Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +7 -1
Dockerfile
CHANGED
@@ -39,12 +39,18 @@ RUN mkdir -p /app/ComfyUI/models/checkpoints \
|
|
39 |
/app/ComfyUI/output \
|
40 |
/app/workflows
|
41 |
|
42 |
-
# Copy files
|
43 |
COPY requirements.txt .
|
44 |
COPY app.py .
|
45 |
COPY start.sh .
|
46 |
COPY download_models.py .
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
# Make scripts executable
|
49 |
RUN chmod +x /app/start.sh
|
50 |
|
|
|
39 |
/app/ComfyUI/output \
|
40 |
/app/workflows
|
41 |
|
42 |
+
# Copy all required application files
|
43 |
COPY requirements.txt .
|
44 |
COPY app.py .
|
45 |
COPY start.sh .
|
46 |
COPY download_models.py .
|
47 |
|
48 |
+
# Copy workflow files
|
49 |
+
COPY workflows/*.json /app/workflows/
|
50 |
+
|
51 |
+
# Copy input images
|
52 |
+
COPY ComfyUI/input/*.jpg /app/ComfyUI/input/
|
53 |
+
|
54 |
# Make scripts executable
|
55 |
RUN chmod +x /app/start.sh
|
56 |
|