File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ ARG GO_VERSION=1.23.6
88ARG XX_VERSION=1.6.1
99ARG GOVERSIONINFO_VERSION=v1.4.1
1010ARG GOTESTSUM_VERSION=v1.12.0
11- ARG BUILDX_VERSION=0.20.0
11+
12+ # BUILDX_VERSION sets the version of buildx to use for the e2e tests.
13+ # It must be a tag in the docker.io/docker/buildx-bin image repository
14+ # on Docker Hub.
15+ ARG BUILDX_VERSION=0.20.1
1216ARG COMPOSE_VERSION=v2.32.4
1317
1418FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
Original file line number Diff line number Diff line change 33ARG GO_VERSION=1.23.6
44ARG ALPINE_VERSION=3.21
55
6- ARG BUILDX_VERSION=0.17.1
6+ # BUILDX_VERSION sets the version of buildx to install in the dev container.
7+ # It must be a valid tag in the docker.io/docker/buildx-bin image repository
8+ # on Docker Hub.
9+ ARG BUILDX_VERSION=0.20.1
710FROM docker/buildx-bin:${BUILDX_VERSION} AS buildx
811
912FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS golang
You can’t perform that action at this time.
0 commit comments