This commit is contained in:
Maurice Schreiner 2026-04-11 13:49:08 +02:00
parent dea458fcb2
commit d16a6d8964

View File

@ -1,5 +1,6 @@
# BUILD STAGE
# Base-Image
FROM ubuntu:latest
FROM debian:stable-slim AS build
# Pakete installieren
RUN apt-get update
@ -9,13 +10,28 @@ RUN apt-get install -y build-essential gcc curl vim net-tools
WORKDIR /app
# alles kopieren
COPY . .
COPY deployment.c .
# Code kompilieren
RUN gcc -o deployment deployment.c
# RUNTIME STAGE
FROM debian:stable-slim
RUN useradd -m appuser
USER appuser
WORKDIR /app
COPY --from=build /app/deployment .
VOLUME ["/output"]
HEALTHCHECK CMD test -f /output/output.txt || exit 1
# Verzeichnis für Ausgabe anlegen
RUN mkdir /output
# RUN mkdir /output
# Ausgabe wird ins Container-Dateisystem geschrieben
ENTRYPOINT ["/bin/bash", "-c"]