freq_word/Dockerfile
2024-09-09 17:14:12 +08:00

9 lines
165 B
Docker

FROM python:3.10
WORKDIR /app
COPY _files /app
RUN pip install -r requirements.txt --no-cache-dir
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]