Files
mark_word_fastapi/Dockerfile
2024-11-19 13:51:15 +08:00

6 lines
146 B
Docker

FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]