This commit is contained in:
Patrick 2024-11-15 21:42:39 +01:00
parent 1ef96f861e
commit 0df883e946

View file

@ -6,7 +6,7 @@ RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
RUN useradd app
RUN adduser -D app
USER app
CMD ["gunicorn","-w 2", "-b 0.0.0.0:5000", "wsgi:app"]