Add Dockerfile

This commit is contained in:
fzorb 2024-09-09 17:17:47 +03:00
parent 4393c802a0
commit 731eb4fc78

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install gunicorn
COPY . .
EXPOSE 5000
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:5000", "app:app"]