stats/Dockerfile

7 lines
139 B
Text
Raw Normal View History

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