Compare commits

..

9 Commits
main ... main

2 changed files with 32 additions and 7 deletions

View File

@ -46,8 +46,8 @@ steps:
#- git remote set-url origin https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2 #- git remote set-url origin https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2
# Repo clonen # Repo clonen
- git clone https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2.git - git clone https://git.efi.th-nuernberg.de/gitea/allamaaki80515/EinfuehrungInDocker_Pipeline2.git
- cd EinfuehrungInDocker_Pipeline - cd EinfuehrungInDocker_Pipeline2
# Branch wechseln oder erstellen # Branch wechseln oder erstellen
- git checkout drone-artifacts || git checkout -b drone-artifacts - git checkout drone-artifacts || git checkout -b drone-artifacts

View File

@ -1,22 +1,47 @@
# Base-Image # Base-Image
FROM ubuntu:latest #FROM ubuntu:latest
# Pakete installieren # Pakete installieren
RUN apt-get update #RUN apt-get update && apt-get install -y build-essential gcc curl vim net-tools
RUN apt-get install -y build-essential gcc curl vim net-tools
# Stage 1: Bauen (mit Alpine + gcc)
FROM alpine:3.19 AS build-env
# Pakete installieren
RUN apk add --no-cache gcc musl-dev
# Arbeitsverzeichnis setzen # Arbeitsverzeichnis setzen
WORKDIR /app WORKDIR /app
# alles kopieren # alles kopieren --> nur noch deployment.c kopieren!
COPY . . COPY deployment.c .
# Code kompilieren # Code kompilieren
RUN gcc -o deployment deployment.c RUN gcc -o deployment deployment.c
# Stage 2: Schlankes Runtime-Image
FROM alpine:3.19
# Verzeichnis für Ausgabe anlegen # Verzeichnis für Ausgabe anlegen
RUN mkdir /output 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 # Ausgabe wird ins Container-Dateisystem geschrieben
ENTRYPOINT ["/bin/bash", "-c"] ENTRYPOINT ["/bin/bash", "-c"]
CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"] CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"]