stats/Dockerfile

7 lines
144 B
Text
Raw Permalink Normal View History

2025-02-07 06:37:58 +00:00
FROM python:3.13.2
2024-05-31 03:32:14 +00:00
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENV PYTHONUNBUFFERED 1
CMD ["fastapi", "run", "--workers", "5"]