From d827f2f6e3f0eb9f7f6252d4d1927fcde2ac1a56 Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Thu, 18 Jan 2024 14:09:06 +0100 Subject: [PATCH] Find EXTERNALLY-MANAGED file --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index b2bbdc98..f68f08e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,6 +40,7 @@ RUN apk add --no-cache \ py-pip \ openssh-client \ make \ + yamllint \ yq &&\ curl -SL https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz | \ tar -C /usr/bin --strip-components 1 -xvzf - linux-amd64/helm && \ @@ -57,6 +58,8 @@ RUN mkdir ~/.ssh &&\ printf "Host github.com\n IdentitiesOnly yes\n IdentityFile ~/.ssh/id_rsa\n" >> ~/.ssh/config &&\ chmod 600 ~/.ssh/* +RUN find / -type f -n "EXTERNALLY-MANAGED" + RUN pip install yamllint==${CT_YAMLLINT_VER} yamale==${CT_YAMALE_VER} ADD ./architect /usr/bin/architect