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

This commit is contained in:
Eric Sharifi 2026-04-12 20:34:54 +00:00
parent 20d5bd8070
commit 182431c998

View File

@ -20,7 +20,7 @@ RUN mkdir /output
VOLUME /output
# User erstellen
RUN adduser -D appuser
RUN adduser -D appuser && chown /output appuser
USER appuser
#health
@ -28,5 +28,5 @@ HEALTHCHECK --interval=5s --timeout=3s --retries=3 \
CMD pgrep deployment || exit 1
# Ausgabe wird ins Container-Dateisystem geschrieben
ENTRYPOINT ["/bin/bash", "-c"]
ENTRYPOINT ["/bin/sh", "-c"]
CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"]