fixed dockerfile

This commit is contained in:
Patrick 2024-11-17 00:16:26 +01:00
parent 151cd8b213
commit 6750814646

View file

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