From fe5fa28ea0f69625ef9cea4278bb0235ef2bf71a Mon Sep 17 00:00:00 2001 From: Venkata Chandra Sekhar Nainala Date: Mon, 6 Mar 2023 12:59:13 +0100 Subject: [PATCH] fix: "Unsupported upgrade request issue: uvicorn" bug fix --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4eb20b5..922a923 100644 --- a/Dockerfile +++ b/Dockerfile @@ -94,6 +94,10 @@ COPY ./requirements.txt /code/requirements.txt RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt +RUN python3 -m pip uninstall uvicorn + +RUN python3 -m pip install uvicorn[standard] + RUN pip3 install --no-cache-dir chembl_structure_pipeline --no-deps COPY ./app /code/app