diff --git a/Dockerfile b/Dockerfile index 4920060..3178375 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ RUN apt install -y tesseract-ocr COPY ./requirements.txt /requirements.txt RUN pip install --upgrade pip RUN pip install -r requirements.txt +RUN pip install --upgrade grpcio RUN pip install gunicorn RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 RUN pip install mmcv==1.4.2 -f https://download.openmmlab.com/mmcv/dist/cu117/torch1.13/index.html diff --git a/app/core/config.py b/app/core/config.py index 062f131..eebf282 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -37,7 +37,7 @@ ATT_TRITON_PORT = "20010" MILVUS_URL = "http://10.1.1.240:19530" -DEBUG = 1 +DEBUG = 2 SHOW_OR_SAVE_result_image = False # service env : 1 # pycharm debug : 2 diff --git a/requirements.txt b/requirements.txt index 0237788..2f9cf54 100644 Binary files a/requirements.txt and b/requirements.txt differ