Skip to content

Commit

Permalink
chore(Containerfile): lower system dependencies version pin
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime1907 committed May 1, 2024
1 parent 3775577 commit 066b9b7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docker/24-dind/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 066b9b7

Please sign in to comment.