Update Dockerfile
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing

This commit is contained in:
Emma Arnold 2026-04-11 12:01:12 +00:00
parent 3df50360e6
commit 4b4bcbf56e

View File

@ -1,45 +1,23 @@
# ---- Build-Stage ----
# Base-Image
FROM alpine AS build-env
# Build-Abhängigkeiten installieren (nur für die Build-Stage)
RUN apk add --no-cache \
build-base \
gcc \
curl
# Pakete installieren
RUN apk add --no-cache build-base
# Arbeitsverzeichnis setzen
WORKDIR /app
# Quellcode kopieren
# alles kopieren
COPY deployment.c .
# Programm kompilieren (statisch linken für bessere Portabilität)
RUN gcc -static -o deployment deployment.c
# Code kompilieren
RUN gcc -o deployment deployment.c
# ---- Finale Stage ----
FROM alpine:3.20
# Verzeichnis für Ausgabe anlegen
RUN mkdir /output
# Kein root User - eigenen User erstellen
RUN addgroup -g 1000 -S appgroup && \
adduser -u 1000 -S appuser -G appgroup
# Nur notwendige Pakete installieren (curl für healthcheck, net-tools nicht nötig)
RUN apk add --no-cache curl
WORKDIR /app
# Programm aus Build-Stage kopieren
COPY --from=build-env --chown=appuser:appgroup /app/deployment /app/deployment
# Ausgabeverzeichnis mit korrekten Berechtigungen
RUN mkdir -p /output && chown -R appuser:appgroup /output
# Zu nicht-root Benutzer wechseln
USER appuser
# Healthcheck alle 30 Sekunden
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD curl -f http://localhost:8080/health || exit 1
# Programm ausführen (ohne Bash, direkt)
# Ausgabe wird ins Container-Dateisystem geschrieben
ENTRYPOINT ["/app/deployment"]
CMD ["10"]
CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"]