Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ ADD src/extra_model_paths.yaml ./
WORKDIR /

# Install Python runtime dependencies for the handler
RUN uv pip install runpod requests websocket-client
ADD requirements.txt ./
RUN uv pip install -r /requirements.txt

# Add application code and scripts
ADD src/start.sh src/network_volume.py handler.py test_input.json ./
Expand Down Expand Up @@ -145,4 +146,4 @@ RUN if [ "$MODEL_TYPE" = "z-image-turbo" ]; then \
FROM base AS final

# Copy models from stage 2 to the final image
COPY --from=downloader /comfyui/models /comfyui/models
COPY --from=downloader /comfyui/models /comfyui/models
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
},
"packageManager": "pnpm@10.28.2",
"devDependencies": {
"@changesets/cli": "^2.29.0"
"@changesets/cli": "^2.30.0"
}
}
73 changes: 33 additions & 40 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# fix some problems with the queue
runpod~=1.7.12
runpod~=1.9.0
cryptography==46.0.7
websocket-client
requests
Loading