backend/fastapi/Dockerfile-fastapi

13 lines
168 B
Plaintext
Raw Permalink Normal View History

2024-12-06 05:12:28 +00:00
FROM python:3.8
WORKDIR /app
COPY ./app /app
RUN pip install -r requirements.txt
EXPOSE 8097
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8097"]