move image copies to the top

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso 2025-01-14 12:04:56 -05:00
parent 7f8ccd7e3a
commit 2dbc651cec
No known key found for this signature in database

View File

@ -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"]