From 2a6348d1b23824116e19037013d7fa95a57356ef Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sat, 15 Jul 2023 15:02:34 +0200 Subject: [PATCH] Dockerfile: update buildx to v0.11.1 update the version we use in the dev-container; - Fix a regression for bake where services in profiles would not be loaded. - Fix a regression where --cgroup-parent option had no effect during build. - Fix a regression where valid docker contexts could fail buildx builder name validation. - Fix an issue where the host-gateway special address could not be used as an argument to --add-host. - Fix a possible panic when terminal is resized during the build. release notes: https://github.com/docker/buildx/releases/tag/v0.11.1 Signed-off-by: Sebastiaan van Stijn (cherry picked from commit ff9f1be19eabaa8c79fe4de7530c08cee06c6817) Signed-off-by: Sebastiaan van Stijn --- Dockerfile | 2 +- dockerfiles/Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 719ff63a82..a14a0ea8e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG ALPINE_VERSION=3.17 ARG XX_VERSION=1.2.1 ARG GOVERSIONINFO_VERSION=v1.3.0 ARG GOTESTSUM_VERSION=v1.10.0 -ARG BUILDX_VERSION=0.11.0 +ARG BUILDX_VERSION=0.11.1 FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx diff --git a/dockerfiles/Dockerfile.dev b/dockerfiles/Dockerfile.dev index e53aab1e7f..eb76e0d8e1 100644 --- a/dockerfiles/Dockerfile.dev +++ b/dockerfiles/Dockerfile.dev @@ -3,7 +3,7 @@ ARG GO_VERSION=1.20.5 ARG ALPINE_VERSION=3.17 -ARG BUILDX_VERSION=0.11.0 +ARG BUILDX_VERSION=0.11.1 FROM docker/buildx-bin:${BUILDX_VERSION} AS buildx FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS golang