debug: ...
Some checks failed
lint, build and push / lint (push) Failing after 4s
lint, build and push / build (push) Failing after 42s

This commit is contained in:
Michael Grote 2024-12-30 20:53:11 +01:00
parent 8b90f13634
commit 86ac9669b2

View file

@ -1,12 +1,12 @@
FROM python:3.13.1-bookworm FROM python:3.13.1-bookworm
# lese secrets von pipeline ein # lese secrets von pipeline ein
RUN --mount=type=secret,id=GITUSERPW \ RUN --mount=type=secret,id=GITUSERPW,env=GITUSERPW \
--mount=type=secret,id=GITUSER \ --mount=type=secret,id=GITUSER,env=GITUSER
export GITUSERPW=$(cat /run/secrets/GITUSERPW) && \
export GITUSER=$(cat /run/secrets/GITUSER)
# keine Nachfragen bei apt
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
# nötig damit die ansible-tools gefunden werden # nötig damit die ansible-tools gefunden werden
ENV PATH="$PATH:/home/ansible-dev/.local/bin" ENV PATH="$PATH:/home/ansible-dev/.local/bin"