stats/Dockerfile
2024-05-31 03:32:14 +00:00

6 lines
139 B
Docker

FROM python:3
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENV PYTHONUNBUFFERED 1
CMD ["fastapi", "run", "--workers", "5"]