update package name in dockerfile
This commit is contained in:
parent
67cb69000b
commit
08fce0ae16
1 changed files with 4 additions and 3 deletions
|
@ -5,8 +5,9 @@ RUN apk add --no-cache python3 py3-build py3-hatchling && \
|
||||||
python3 -m build .
|
python3 -m build .
|
||||||
|
|
||||||
FROM alpine:3.18
|
FROM alpine:3.18
|
||||||
COPY --from=build /build/dist/comfy-recipes-*-py3-none-any.whl /
|
COPY --from=build /build/dist/ /mnt
|
||||||
RUN apk add --no-cache python3 py3-pip && \
|
RUN apk add --no-cache python3 py3-pip && \
|
||||||
pip install /comfy-recipes-*-py3-none-any.whl && \
|
pip install /mnt/comfy_recipes-*-py3-none-any.whl && \
|
||||||
apk del py3-pip
|
apk del py3-pip && \
|
||||||
|
rm -r /mnt
|
||||||
ENTRYPOINT ["/usr/bin/recipes-cli"]
|
ENTRYPOINT ["/usr/bin/recipes-cli"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue