From 9ecd8e4e79e2ee7a8800f52abcebb56a1f1da6e2 Mon Sep 17 00:00:00 2001 From: administrator Date: Thu, 15 Feb 2024 21:53:51 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 2287125..c34da36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file