stats/Dockerfile
2025-02-07 06:37:58 +00:00

6 lines
144 B
Docker

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