From f36cc58ccfb56de17b02d1c0d554990e5ac0569a Mon Sep 17 00:00:00 2001 From: Thomas Deutsch Date: Wed, 7 Aug 2024 17:18:29 +0200 Subject: [PATCH 1/3] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d6c7541..4f569a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN echo "@edge http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repo COPY scripts/* /scripts/ -# hadolint ignore=DL3017,DL3018 +# hadolint ignore=DL3017,DL3018,DL3013 RUN chmod +x /scripts/* \ && apk add --no-cache --update \ arping \ From d998700e1591e305f837b1c35ebc0c9e463d979b Mon Sep 17 00:00:00 2001 From: Thomas Deutsch Date: Wed, 7 Aug 2024 17:23:00 +0200 Subject: [PATCH 2/3] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4f569a7..1ec0367 100644 --- a/Dockerfile +++ b/Dockerfile @@ -82,8 +82,8 @@ RUN chmod +x /scripts/* \ && curl -s https://fluxcd.io/install.sh | bash \ && curl -L https://carvel.dev/install.sh | K14SIO_INSTALL_BIN_DIR=/usr/local/bin bash \ && apk add --no-cache --virtual .build-deps musl-dev python3-dev libffi-dev openssl-dev cargo make \ - && pip install --no-cache-dir --upgrade pip \ - && pip install --no-cache-dir --requirement requirements.txt \ + && pip install --no-cache-dir --upgrade --break-system-packages pip \ + && pip install --no-cache-dir --requirement --break-system-packages requirements.txt \ && apk del .build-deps \ && mkdir /workdir \ && chmod 777 /workdir \ From 35b91fbc1e2310e44efea14e1ba55caf7212ec16 Mon Sep 17 00:00:00 2001 From: Thomas Deutsch Date: Wed, 7 Aug 2024 18:10:02 +0200 Subject: [PATCH 3/3] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1ec0367..e2f11d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -82,8 +82,8 @@ RUN chmod +x /scripts/* \ && curl -s https://fluxcd.io/install.sh | bash \ && curl -L https://carvel.dev/install.sh | K14SIO_INSTALL_BIN_DIR=/usr/local/bin bash \ && apk add --no-cache --virtual .build-deps musl-dev python3-dev libffi-dev openssl-dev cargo make \ - && pip install --no-cache-dir --upgrade --break-system-packages pip \ - && pip install --no-cache-dir --requirement --break-system-packages requirements.txt \ + && pip install --break-system-packages --no-cache-dir --upgrade pip \ + && pip install --break-system-packages --no-cache-dir --requirement requirements.txt \ && apk del .build-deps \ && mkdir /workdir \ && chmod 777 /workdir \