From 1c13ae3aa143982a40b55fc06308010bcd28aec0 Mon Sep 17 00:00:00 2001 From: Marco Guaspari Worms Date: Thu, 22 Jun 2023 13:34:06 -0300 Subject: [PATCH] Add dependencies for Deforum extension Deforum is a popular automatic1111 extension, this addition adds the needed dependencies so it can work properly with this docker image! Sorry I'm not a docker expert so I just added the lines in a way that worked here when testing, idk if this is the best place to install these dependencies! --- services/AUTOMATIC1111/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/AUTOMATIC1111/Dockerfile b/services/AUTOMATIC1111/Dockerfile index 6ef8fda..1370673 100644 --- a/services/AUTOMATIC1111/Dockerfile +++ b/services/AUTOMATIC1111/Dockerfile @@ -80,6 +80,11 @@ RUN --mount=type=cache,target=/root/.cache/pip \ COPY . /docker +RUN pip install rich +RUN pip install numexpr +RUN pip install python-dotenv +RUN pip install segno + RUN \ python3 /docker/info.py ${ROOT}/modules/ui.py && \ mv ${ROOT}/style.css ${ROOT}/user.css && \