Closed jeffcrouse closed 3 days ago
Just leaving this here in case it's helpful to anyone else. I had ignorantly copied s line from another Dockerfile: SHELL ["/bin/bash", "-o", "pipefail", "-c"]
that was causing the error. I still don't quite understand the concept of -o pipefail
, but I understand that it's too strict about exit status
Describe the bug
To Reproduce Here's the Dockerfile https://gist.github.com/jeffcrouse/98a78ed0641c6695fac23008328e8706
Expected behavior Comfy should be successfully installed and the move on to the next command
Additional context This Dockerfile seems to use ``RUN /usr/bin/yes | comfy --workspace /comfyui install``` but it doesn't work on my system https://github.com/blib-la/runpod-worker-comfy/blob/main/Dockerfile
There also seems to be some talk of some a
--skip-prompt
option at https://github.com/Comfy-Org/comfy-cli/issues/128, but this also throws an error for me, saying that--skip-prompt
is not an option.Of course I can ignore the exit code with a
|| true
but I would rather not ignore ALL errors.