stats/Dockerfile

7 lines
144 B
Text
Raw Normal View History

2024-10-16 04:02:26 +00:00
FROM python:3.13.0
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"]