From 8a99845d70a1a2760534edd3cdfb2abc12702c4d Mon Sep 17 00:00:00 2001 From: Lucas Severo Alves Date: Mon, 6 Dec 2021 14:16:26 +0100 Subject: [PATCH] chore: replace alpine by distroless --- Dockerfile | 2 +- e2e/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cfc491884..723450f19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15.0 +FROM gcr.io/distroless/static ARG TARGETOS ARG TARGETARCH COPY bin/external-secrets-${TARGETOS}-${TARGETARCH} /bin/external-secrets diff --git a/e2e/Dockerfile b/e2e/Dockerfile index 6e12ad818..642a6b799 100644 --- a/e2e/Dockerfile +++ b/e2e/Dockerfile @@ -10,7 +10,7 @@ RUN wget -q https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_ wget -q https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz -O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm && \ chmod +x /usr/local/bin/helm -FROM alpine:3.14.2 +FROM alpine:3.15.0 RUN apk add -U --no-cache \ ca-certificates \ bash \