Compare commits

..

No commits in common. "main" and "v0.4.7" have entirely different histories.
main ... v0.4.7

2 changed files with 4 additions and 6 deletions

View file

@ -11,7 +11,7 @@ steps:
image: code.philo.ydns.eu/philorg/woodpecker-buildah
settings:
registry: code.philo.ydns.eu
repository: philorg/test-woodpecker-python
repository: philorg/test-woodpecker
tags: ${CI_COMMIT_SHA}
architectures: amd64
context: Containerfile

View file

@ -4,13 +4,11 @@ FROM docker.io/python:alpine
COPY . /app
# Sync the project into a new environment, using the frozen lockfile
WORKDIR /app
# Sync the project into a new environment, using the frozen lockfile
RUN \
--mount=from=code.philo.ydns.eu/philorg/uv,source=/usr/local/bin/uv,target=/bin/uv \
--mount=from=code.philo.ydns.eu/philorg/uv,source=/usr/lib/libpcre2-8.so.0,target=/usr/lib/libpcre2-8.so.0 \
--mount=from=code.philo.ydns.eu/philorg/uv,source=/usr/bin/git,target=/usr/bin/git \
RUN --mount=from=code.philorg.ydns.eu/uv:alpine,source=/usr/local/bin/uv,target=/bin/uv \
--mount=from=code.philorg.ydns.eu/uv:alpine,source=/usr/bin/git,target=/bin/git \
uv pip install --system .
ENTRYPOINT ["foo"]