From 8392447e65af1ea5f82fa61277cfb2a0721f58d2 Mon Sep 17 00:00:00 2001 From: Sampson <51352671+raddadengineer@users.noreply.github.com> Date: Wed, 28 Jan 2026 23:07:48 -0600 Subject: [PATCH] fix: upgrade typing_extensions to resolve altair import error Added RUN pip install --upgrade typing_extensions to ensure compatibility with altair and gradio dependencies. This resolves a startup crash caused by missing TypeIs in older versions of typing_extensions, allowing the container to initialize successfully. --- services/AUTOMATIC1111/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/services/AUTOMATIC1111/Dockerfile b/services/AUTOMATIC1111/Dockerfile index d595784..b4d0519 100644 --- a/services/AUTOMATIC1111/Dockerfile +++ b/services/AUTOMATIC1111/Dockerfile @@ -32,6 +32,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \ cd stable-diffusion-webui && \ git reset --hard v1.9.4 && \ pip install -r requirements_versions.txt + RUN pip install --upgrade typing_extensions ENV ROOT=/stable-diffusion-webui