AAdd access to git in Containerfile
Some checks failed
ci/woodpecker/tag/test Pipeline was successful
ci/woodpecker/tag/build Pipeline failed

This commit is contained in:
phil 2025-06-25 14:57:16 +02:00
parent 1190718e98
commit e5e6c029fa

View file

@ -7,6 +7,8 @@ COPY . /app
# Sync the project into a new environment, using the frozen lockfile
WORKDIR /app
RUN --mount=from=ghcr.io/astral-sh/uv:alpine,source=/usr/local/bin/uv,target=/bin/uv uv pip install --system .
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"]