Skip to content

Commit afb3212

Browse files
authored
Merge pull request #6827 from thaJeztah/bump_compose
Dockerfile: update compose to v5.1.0, buildx to v0.31.1, mvdan.cc/gofump to v0.9.2
2 parents 575793f + 8c3d053 commit afb3212

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ ARG GOTESTSUM_VERSION=v1.13.0
2525
# BUILDX_VERSION sets the version of buildx to use for the e2e tests.
2626
# It must be a tag in the docker.io/docker/buildx-bin image repository
2727
# on Docker Hub.
28-
ARG BUILDX_VERSION=0.29.1
28+
ARG BUILDX_VERSION=0.31.1
2929

3030
# COMPOSE_VERSION is the version of compose to install in the dev container.
3131
# It must be a tag in the docker.io/docker/compose-bin image repository
3232
# on Docker Hub.
33-
ARG COMPOSE_VERSION=v2.40.0
33+
ARG COMPOSE_VERSION=v5.1.0
3434

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

dockerfiles/Dockerfile.dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ ARG ALPINE_VERSION=3.23
1010
# BUILDX_VERSION sets the version of buildx to install in the dev container.
1111
# It must be a valid tag in the docker.io/docker/buildx-bin image repository
1212
# on Docker Hub.
13-
ARG BUILDX_VERSION=0.29.1
13+
ARG BUILDX_VERSION=0.31.1
1414
FROM docker/buildx-bin:${BUILDX_VERSION} AS buildx
1515

1616
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS golang
1717
ENV GOTOOLCHAIN=local
1818
ENV CGO_ENABLED=0
1919

2020
FROM golang AS gofumpt
21-
ARG GOFUMPT_VERSION=v0.7.0
21+
ARG GOFUMPT_VERSION=v0.9.2
2222
RUN --mount=type=cache,target=/root/.cache/go-build \
2323
--mount=type=cache,target=/go/pkg/mod \
2424
--mount=type=tmpfs,target=/go/src/ \

0 commit comments

Comments
 (0)