From 2c9b7db7dffe60170dcf703fe2ff647d1ee218f7 Mon Sep 17 00:00:00 2001 From: Marc Lundgren Date: Thu, 22 Aug 2024 19:22:44 -0700 Subject: [PATCH] hack Dockerfile typing_extensions until a proper fix is found --- services/AUTOMATIC1111/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/AUTOMATIC1111/Dockerfile b/services/AUTOMATIC1111/Dockerfile index d59578442..15e298137 100644 --- a/services/AUTOMATIC1111/Dockerfile +++ b/services/AUTOMATIC1111/Dockerfile @@ -39,6 +39,10 @@ ENV ROOT=/stable-diffusion-webui COPY --from=download /repositories/ ${ROOT}/repositories/ RUN mkdir ${ROOT}/interrogate && cp ${ROOT}/repositories/clip-interrogator/clip_interrogator/data/* ${ROOT}/interrogate +RUN --mount=type=cache,target=/root/.cache/pip \ + pip uninstall -y typing_extensions && \ + pip install typing_extensions==4.11.0 + RUN --mount=type=cache,target=/root/.cache/pip \ pip install pyngrok xformers==0.0.26.post1 \ git+https://github.com/TencentARC/GFPGAN.git@8d2447a2d918f8eba5a4a01463fd48e45126a379 \