stats/Dockerfile

7 lines
144 B
Text
Raw Normal View History

2024-12-07 07:38:22 +09:00
FROM python:3.13.1
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"]