All checks were successful
ci/woodpecker/push/containers Pipeline was successful
11 lines
299 B
Docker
11 lines
299 B
Docker
FROM python:3.13-alpine AS build
|
|
COPY . /build
|
|
WORKDIR /build
|
|
RUN pip install build hatchling && \
|
|
python3 -m build .
|
|
|
|
FROM python:3.13-alpine
|
|
COPY --from=build /build/dist/ /mnt
|
|
RUN pip install /mnt/comfy_recipes-*-py3-none-any.whl && \
|
|
rm -r /mnt
|
|
ENTRYPOINT ["/usr/local/bin/recipes-cli"]
|