From 6f34e1354c195430e2d073ce6a9479c9b1e3f2b8 Mon Sep 17 00:00:00 2001 From: Kinan Allamaa Date: Sat, 11 Apr 2026 11:42:15 +0000 Subject: [PATCH] Dockerfile aktualisiert --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e680847..bb51590 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,8 @@ RUN gcc -o deployment deployment.c # Verzeichnis für Ausgabe anlegen RUN mkdir /output +COPY --from=build-env /app/deployment /app/deployment + # Ausgabe wird ins Container-Dateisystem geschrieben ENTRYPOINT ["/bin/bash", "-c"] CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"] \ No newline at end of file