Update Dockerfile

This commit is contained in:
2024-02-15 21:53:51 +08:00
parent e61df9f633
commit 9ecd8e4e79

View File

@@ -3,5 +3,6 @@ FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN apt install nano
COPY ./app /code/app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]