dockerfile verbessert

This commit is contained in:
Erik Thiele
2026-06-20 16:54:54 +02:00
parent 3eb5cf9d8d
commit 4a428c0d6d

View File

@@ -7,7 +7,7 @@ RUN pip install --no-cache-dir -r requirements.txt gunicorn
COPY . .
RUN addgroup --system app && adduser --system --ingroup app app && \
RUN addgroup --system app && adduser --system --ingroup app --home /app app && \
chown -R app:app /app
USER app