Update Dockerfile

This commit is contained in:
2024-02-15 18:23:39 +08:00
parent 6149f536f5
commit 8a15061dbd

View File

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