From b5362e65f71830b706e770ac82c111ac836453cd Mon Sep 17 00:00:00 2001 From: administrator Date: Thu, 15 Feb 2024 18:25:07 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 077f19b..df8ffe4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10 WORKDIR /code COPY ./requirements.txt /code/requirements.txt -RUN apt-get install -y wget nano +RUN apt-get install -y wget vi RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY ./app /code/app CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] \ No newline at end of file