From 43c96851ab2c3fae53324fc1ca993174146375e9 Mon Sep 17 00:00:00 2001 From: codebien <2103732+codebien@users.noreply.github.com> Date: Tue, 29 Aug 2023 16:11:40 +0200 Subject: [PATCH] docker: Bump alpine version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a1f5affabad..dc69ccb704c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM golang:1.20-alpine3.17 as builder +FROM golang:1.20-alpine3.18 as builder WORKDIR $GOPATH/src/go.k6.io/k6 COPY . . RUN apk --no-cache add git=~2 RUN CGO_ENABLED=0 go install -a -trimpath -ldflags "-s -w -X go.k6.io/k6/lib/consts.VersionDetails=$(date -u +"%FT%T%z")/$(git describe --tags --always --long --dirty)" # Runtime stage -FROM alpine:3.17 as release +FROM alpine:3.18 as release # hadolint ignore=DL3018 RUN apk add --no-cache ca-certificates && \