TW-Requests/fastapi_app/Dockerfile

12 lines
196 B
Docker
Raw Normal View History

2024-07-15 07:15:51 +00:00
FROM python:3.11.4
COPY . /fastapi_app
WORKDIR /fastapi_app
EXPOSE 8000
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]