From 86ac9669b284f570ee28c1a8667a1621686067be Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Mon, 30 Dec 2024 20:53:11 +0100 Subject: [PATCH] debug: ... --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 61651aa..f0fa526 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM python:3.13.1-bookworm # lese secrets von pipeline ein -RUN --mount=type=secret,id=GITUSERPW \ - --mount=type=secret,id=GITUSER \ - export GITUSERPW=$(cat /run/secrets/GITUSERPW) && \ - export GITUSER=$(cat /run/secrets/GITUSER) +RUN --mount=type=secret,id=GITUSERPW,env=GITUSERPW \ + --mount=type=secret,id=GITUSER,env=GITUSER +# keine Nachfragen bei apt ENV DEBIAN_FRONTEND=noninteractive + # nötig damit die ansible-tools gefunden werden ENV PATH="$PATH:/home/ansible-dev/.local/bin"