From 2dbc651cecfc70e042752b78dbbd9396f711b212 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Tue, 14 Jan 2025 12:04:56 -0500 Subject: [PATCH] move image copies to the top Signed-off-by: Xe Iaso --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0ecd9a4..c3e8db6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,9 @@ -FROM ghcr.io/lecode-official/comfyui-docker:latest +FROM anu-registry.fly.dev/runners/comfyui:latest + +COPY models/checkpoints /opt/comfyui/models/checkpoints +COPY models/embeddings /opt/comfyui/models/embeddings +COPY models/loras /opt/comfyui/models/loras +COPY models/vae /opt/comfyui/models/vae RUN pip install Flask \ && git clone https://github.com/TemryL/ComfyS3 /opt/comfyui/custom_nodes/comfys3 \ @@ -13,6 +18,4 @@ COPY waifuwave.py . COPY fetch_models.py . COPY startup.sh . -COPY models /opt/comfyui/models - CMD ["/opt/comfyui/startup.sh"] \ No newline at end of file