Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e22c164c37 | |||
| 7293f0cff9 | |||
| 35d63000f9 | |||
| 1c274cf1c6 | |||
| 728de6a08e | |||
| 947045c0c0 | |||
| df25622098 | |||
| 8ce76dd289 | |||
| 1e9be72276 | |||
| 774140c867 | |||
| 0efcaaa378 |
24
.drone.yml
24
.drone.yml
@ -42,26 +42,20 @@ steps:
|
||||
- git config --global user.email "drone@ci.local"
|
||||
- git config --global user.name "Drone CI"
|
||||
|
||||
# Remote setzen
|
||||
#- git remote set-url origin https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2
|
||||
# Eigenes Repo klonen (mit Token-Auth)
|
||||
- git clone https://kesslerpe96777:$GITEA_TOKEN@git.efi.th-nuernberg.de/gitea/kesslerpe96777/EinfuehrungInDocker_Pipeline2.git
|
||||
- cd EinfuehrungInDocker_Pipeline2
|
||||
|
||||
# Repo clonen
|
||||
- git clone https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2.git
|
||||
- cd EinfuehrungInDocker_Pipeline
|
||||
|
||||
# Branch wechseln oder erstellen
|
||||
# Branch wechseln oder neu erstellen
|
||||
- git checkout drone-artifacts || git checkout -b drone-artifacts
|
||||
|
||||
# Artifact löschen und neu hinzufügen
|
||||
- git rm image.tar
|
||||
# Altes Artifact löschen (|| true falls noch nicht da)
|
||||
- git rm image.tar || true
|
||||
- cp $DRONE_WORKSPACE/image.tar .
|
||||
- git add image.tar
|
||||
|
||||
# Commit nur wenn Änderungen vorhanden
|
||||
# Commit nur wenn Änderungen
|
||||
- git commit -m "Add built Docker image [skip ci]" || echo "Nothing to commit"
|
||||
|
||||
# Pull vor Push (um Konflikte zu vermeiden)
|
||||
- git pull || true
|
||||
|
||||
# Push
|
||||
- git push
|
||||
# Push (-u beim ersten Mal damit der neue Branch upstream gesetzt wird)
|
||||
- git push -u origin drone-artifacts
|
||||
45
Dockerfile
45
Dockerfile
@ -1,9 +1,8 @@
|
||||
# Base-Image
|
||||
FROM ubuntu:latest
|
||||
FROM alpine:3.23 AS builder
|
||||
|
||||
# Pakete installieren
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential gcc curl vim net-tools
|
||||
# Pakete installieren + Updates einspielen
|
||||
RUN apk upgrade --no-cache && apk add --no-cache gcc musl-dev
|
||||
|
||||
# Arbeitsverzeichnis setzen
|
||||
WORKDIR /app
|
||||
@ -12,11 +11,37 @@ WORKDIR /app
|
||||
COPY . .
|
||||
|
||||
# Code kompilieren
|
||||
RUN gcc -o deployment deployment.c
|
||||
RUN gcc -O2 -o deployment deployment.c
|
||||
|
||||
# Verzeichnis für Ausgabe anlegen
|
||||
RUN mkdir /output
|
||||
|
||||
# Ausgabe wird ins Container-Dateisystem geschrieben
|
||||
ENTRYPOINT ["/bin/bash", "-c"]
|
||||
CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"]
|
||||
# Base-Image
|
||||
FROM alpine:3.23
|
||||
|
||||
# Sicherheitsupdates einspielen
|
||||
RUN apk upgrade --no-cache
|
||||
|
||||
# Arbeitsverzeichnis setzen
|
||||
WORKDIR /app
|
||||
|
||||
# kompiliertes Programm kopieren
|
||||
COPY --from=builder /app/deployment /app/deployment
|
||||
|
||||
# Verzeichnis für Ausgabe anlegen + User erstellen
|
||||
RUN addgroup -S appuser \
|
||||
&& adduser -S appuser -G appuser \
|
||||
&& mkdir /output \
|
||||
&& chown -R appuser:appuser /app /output
|
||||
|
||||
# Datavolume für Ausgabe
|
||||
VOLUME ["/output"]
|
||||
|
||||
# nicht als root laufen
|
||||
USER appuser
|
||||
|
||||
# Healthcheck
|
||||
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
|
||||
CMD test -s /output/output.txt || exit 1
|
||||
|
||||
# Ausgabe wird ins Volume geschrieben
|
||||
ENTRYPOINT ["/bin/sh", "-c"]
|
||||
CMD ["./deployment 10 2>&1 | tee /output/output.txt"]
|
||||
22
Dockerfile2
Normal file
22
Dockerfile2
Normal file
@ -0,0 +1,22 @@
|
||||
# Base-Image
|
||||
FROM ubuntu:latest
|
||||
|
||||
# Pakete installieren
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential gcc curl vim net-tools
|
||||
|
||||
# Arbeitsverzeichnis setzen
|
||||
WORKDIR /app
|
||||
|
||||
# alles kopieren
|
||||
COPY . .
|
||||
|
||||
# Code kompilieren
|
||||
RUN gcc -o deployment deployment.c
|
||||
|
||||
# Verzeichnis für Ausgabe anlegen
|
||||
RUN mkdir /output
|
||||
|
||||
# Ausgabe wird ins Container-Dateisystem geschrieben
|
||||
ENTRYPOINT ["/bin/bash", "-c"]
|
||||
CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"]
|
||||
Loading…
x
Reference in New Issue
Block a user