Skip to content

Commit f7c3d1c

Browse files
authored
Merge pull request #5815 from thaJeztah/bump_buildx
Dockerfile: dev-container: update buildx v0.20.1
2 parents 661d079 + 1acf32c commit f7c3d1c

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ ARG GO_VERSION=1.23.6
88
ARG XX_VERSION=1.6.1
99
ARG GOVERSIONINFO_VERSION=v1.4.1
1010
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
1216
ARG COMPOSE_VERSION=v2.32.4
1317

1418
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx

dockerfiles/Dockerfile.dev

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
ARG GO_VERSION=1.23.6
44
ARG 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
710
FROM docker/buildx-bin:${BUILDX_VERSION} AS buildx
811

912
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS golang

0 commit comments

Comments
 (0)