Files
AM-Exporter/back/Dockerfile
√(noham)² cc5545d7b1 /t
2024-03-03 00:23:06 +01:00

13 lines
215 B
Docker

FROM python:3.10-alpine
WORKDIR /t
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 3005
RUN pip install gunicorn
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:3005", "--chdir", "/t", "app:app"]