From 066b9b7e07a4dde4b1ceb77496970da6076bb5d6 Mon Sep 17 00:00:00 2001 From: maxime1907 <19607336+maxime1907@users.noreply.github.com> Date: Wed, 1 May 2024 14:20:21 +0200 Subject: [PATCH] chore(Containerfile): lower system dependencies version pin --- docker/24-dind/Containerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docker/24-dind/Containerfile b/docker/24-dind/Containerfile index 02338d5..d3bff7b 100644 --- a/docker/24-dind/Containerfile +++ b/docker/24-dind/Containerfile @@ -2,16 +2,18 @@ FROM docker:24.0.8-dind as build ARG KIND_VERSION=v0.20.0 -RUN apk add --no-cache go=1.21.6-r0 \ +RUN apk add --no-cache \ + go~=1.21 \ && go install "sigs.k8s.io/kind@${KIND_VERSION}" FROM docker:24.0.8-dind as base COPY --from=build /root/go/bin/kind /usr/local/bin/kind -RUN apk add --no-cache ca-certificates=20230506-r0 \ - gettext=0.22.3-r0 \ - bash=5.2.21-r0 +RUN apk add --no-cache \ + ca-certificates~=20230506 \ + gettext~=0.22 \ + bash~=5.2 WORKDIR /app