Skip to content

Commit b6f4e30

Browse files
committed
dockerfile: align go version in vendor dockerfile
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
1 parent 0110a99 commit b6f4e30

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

hack/dockerfiles/vendor.Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616

1717
# upstream at https://github.com/moby/buildkit/blob/master/hack/dockerfiles/vendor.Dockerfile
1818

19-
ARG GO_VERSION=1.20
19+
ARG GO_VERSION="1.21"
20+
ARG ALPINE_VERSION="3.17"
2021

21-
FROM golang:${GO_VERSION}-alpine AS base
22+
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base
2223
RUN apk add --no-cache git rsync
2324
WORKDIR /src
2425

0 commit comments

Comments
 (0)