test-woodpecker-python/Containerfile
phil 9a948fde8e
Some checks failed
ci/woodpecker/tag/test Pipeline was successful
ci/woodpecker/tag/build Pipeline failed
Fix
2025-06-25 15:00:40 +02:00

14 lines
450 B
Docker

# Build: podman build -t code.philo.ydns.eu/philorg/test-woodpecker -f Containerfile
FROM docker.io/python:alpine
COPY . /app
# Sync the project into a new environment, using the frozen lockfile
WORKDIR /app
RUN --mount=from=code.philorg.ydns.eu/philorg/uv:alpine,source=/usr/local/bin/uv,target=/bin/uv \
--mount=from=code.philorg.ydns.eu/philorg/uv:alpine,source=/usr/bin/git,target=/bin/git \
uv pip install --system .
ENTRYPOINT ["foo"]