From 8e9b75a3eebe557a3d3c2837d1fb806b88bd4d7a Mon Sep 17 00:00:00 2001 From: Adios Date: Sun, 1 Dec 2024 12:05:23 +0800 Subject: [PATCH] WORKAROUND: cannot import name TypeIs - https://github.com/AbdBarho/stable-diffusion-webui-docker/issues/729 --- services/AUTOMATIC1111/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/AUTOMATIC1111/Dockerfile b/services/AUTOMATIC1111/Dockerfile index d59578442..47f75d0eb 100644 --- a/services/AUTOMATIC1111/Dockerfile +++ b/services/AUTOMATIC1111/Dockerfile @@ -31,7 +31,8 @@ RUN --mount=type=cache,target=/root/.cache/pip \ git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git && \ cd stable-diffusion-webui && \ git reset --hard v1.9.4 && \ - pip install -r requirements_versions.txt + pip install -r requirements_versions.txt && \ + pip install --upgrade typing-extensions ENV ROOT=/stable-diffusion-webui