We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2097ee0 commit 8a31c02Copy full SHA for 8a31c02
docker/Dockerfile.base
@@ -85,6 +85,10 @@ RUN ln -s /workspace/comfystream /workspace/ComfyUI/custom_nodes/comfystream
85
RUN conda run -n comfystream --no-capture-output --cwd /workspace/comfystream pip install -e . --root-user-action=ignore
86
RUN conda run -n comfystream --no-capture-output --cwd /workspace/comfystream python install.py --workspace /workspace/ComfyUI
87
88
+# Accept a build-arg that lets CI force-invalidate setup_nodes.py
89
+ARG CACHEBUST=static
90
+ENV CACHEBUST=${CACHEBUST}
91
+
92
# Run setup_nodes
93
RUN conda run -n comfystream --no-capture-output --cwd /workspace/comfystream python src/comfystream/scripts/setup_nodes.py --workspace /workspace/ComfyUI
94
0 commit comments