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
8
8
ARG XX_VERSION=1.6.1
9
9
ARG GOVERSIONINFO_VERSION=v1.4.1
10
10
ARG 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
12
16
ARG COMPOSE_VERSION=v2.32.4
13
17
14
18
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
Original file line number Diff line number Diff line change 3
3
ARG GO_VERSION=1.23.6
4
4
ARG ALPINE_VERSION=3.21
5
5
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
7
10
FROM docker/buildx-bin:${BUILDX_VERSION} AS buildx
8
11
9
12
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS golang
You can’t perform that action at this time.
0 commit comments