Admin Dashboard, Hilfe-Seite, Dockerfile Fixes (gunicorn, UID 1000, HOME)

This commit is contained in:
Erik Thiele
2026-06-21 16:46:06 +02:00
parent 9ccbd1d896
commit 928ea92aed
2 changed files with 27 additions and 11 deletions

View File

@@ -7,8 +7,9 @@ RUN pip install --no-cache-dir -r requirements.txt gunicorn
COPY . .
RUN addgroup --system app && adduser --system --ingroup app --home /app app && \
chown -R app:app /app
RUN addgroup --system --gid 1000 app && adduser --system --uid 1000 --ingroup app app && \
chown -R app:app /app && chmod -R u+w /app
ENV HOME=/app
USER app
EXPOSE 5005