redesigned

This commit is contained in:
Patrick 2024-11-21 16:14:12 +01:00
parent 6750814646
commit e8cff9b1d4
6 changed files with 12 additions and 1 deletions

13
dist/Dockerfile vendored Normal file
View file

@ -0,0 +1,13 @@
FROM python:alpine
WORKDIR /usr/local/app
COPY src ./
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"]