Compare commits

...

15 Commits
main ... main

2 changed files with 33 additions and 8 deletions

View File

@ -46,14 +46,14 @@ steps:
#- git remote set-url origin https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2
# Repo clonen
- git clone https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2.git
- cd EinfuehrungInDocker_Pipeline
- git clone https://git.efi.th-nuernberg.de/gitea/allamaaki80515/EinfuehrungInDocker_Pipeline2.git
- cd EinfuehrungInDocker_Pipeline2
# Branch wechseln oder erstellen
- git checkout drone-artifacts || git checkout -b drone-artifacts
# Artifact löschen und neu hinzufügen
- git rm image.tar
- rm -f image.tar
- cp $DRONE_WORKSPACE/image.tar .
- git add image.tar

View File

@ -1,22 +1,47 @@
# Base-Image
FROM ubuntu:latest
#FROM ubuntu:latest
# Pakete installieren
RUN apt-get update
RUN apt-get install -y build-essential gcc curl vim net-tools
#RUN apt-get update && apt-get install -y build-essential gcc curl vim net-tools
# Stage 1: Bauen (mit Alpine + gcc)
FROM alpine:3.21 AS build-env
# Pakete installieren
RUN apk add --no-cache gcc musl-dev
# Arbeitsverzeichnis setzen
WORKDIR /app
# alles kopieren
COPY . .
# alles kopieren --> nur noch deployment.c kopieren!
COPY deployment.c .
# Code kompilieren
RUN gcc -o deployment deployment.c
# Stage 2: Schlankes Runtime-Image
FROM alpine:3.21
# Verzeichnis für Ausgabe anlegen
RUN mkdir /output
# Nicht-Root-User anlegen
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
RUN chown appuser:appgroup /output
# Nur die fertige Binary aus Stage 1 übernehmen
COPY --from=build-env /app/deployment /app/deployment
# Volume für Ausgabe
VOLUME ["/output"]
# Non-root User setzen
USER appuser
# Healthcheck: prüft ob das Output-Verzeichnis erreichbar ist
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \
CMD test -d /output || exit 1
# Ausgabe wird ins Container-Dateisystem geschrieben
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"]