From ac4bea406465ad8d8846e4a4765895c9f056c2c3 Mon Sep 17 00:00:00 2001 From: Hanwen Zh <70364944+homework36@users.noreply.github.com> Date: Mon, 8 Jul 2024 14:34:03 -0400 Subject: [PATCH 1/2] update pip install source code url old code link does not support python below 3.8 any more --- gpu-celery/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu-celery/Dockerfile b/gpu-celery/Dockerfile index 6d316ba43..fd44c14f2 100644 --- a/gpu-celery/Dockerfile +++ b/gpu-celery/Dockerfile @@ -94,7 +94,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* \ - && wget https://bootstrap.pypa.io/get-pip.py \ + && wget https://bootstrap.pypa.io/pip/3.7/get-pip.py \ && ${PYTHON} get-pip.py \ && ln -sf /usr/bin/${PYTHON} /usr/local/bin/python3 \ && ln -sf /usr/local/bin/pip /usr/local/bin/pip3 \ From d37410f0e16216de1a4631196800d4bc29fee07e Mon Sep 17 00:00:00 2001 From: Hanwen Zh <70364944+homework36@users.noreply.github.com> Date: Mon, 8 Jul 2024 14:34:33 -0400 Subject: [PATCH 2/2] remove duplicate iipsrv build code block we already have iipsrv build at line 10 --- build.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build.yml b/build.yml index 223208a41..b5672a8a1 100644 --- a/build.yml +++ b/build.yml @@ -49,8 +49,3 @@ services: dockerfile: Dockerfile image: "ddmal/rodan-client:nightly" - iipsrv: - build: - context: ./iipsrv - dockerfile: Dockerfile - image: "ddmal/iipsrv:nightly"