File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
- build
6
6
- --target=docker
7
7
- --build-arg=DOCKER_VERSION=${_DOCKER_VERSION}
8
- - --build-arg=BUILDX_DIGEST =${_BUILDX_DIGEST }
8
+ - --build-arg=BUILDX_VERSION =${_BUILDX_VERSION }
9
9
- --tag=docker-buildx:cloudbuild
10
10
- --file=hack/dockerfiles/buildx.dockerfile
11
11
- hack/dockerfiles
@@ -129,7 +129,7 @@ steps:
129
129
130
130
substitutions :
131
131
_DOCKER_VERSION : " 20.10"
132
- _BUILDX_DIGEST : " 2ec838c5f74e1cdd5e6ea4e789c0c0f5573807550b50b2ddc6deb2c2033a286b " # https://github.com/docker/buildx/tree/084b6c0a95ce, https://github.com/docker/buildx/runs/3947339794
132
+ _BUILDX_VERSION : " 0.7.0-rc1 " # https://github.com/docker/buildx/releases/tag/v0.7.0-rc1
133
133
_PROTOC_VERSION : " 3.19.0" # https://github.com/protocolbuffers/protobuf/releases/tag/v3.19.0
134
134
_GOLANG_VERSION : " 1.17"
135
135
_ALPINE_VERSION : " 3.14"
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1.3
2
2
3
3
ARG DOCKER_VERSION
4
- ARG BUILDX_DIGEST
4
+ ARG BUILDX_VERSION
5
5
6
- FROM --platform=$BUILDPLATFORM docker/buildx-bin@sha256 :${BUILDX_DIGEST } AS buildx
6
+ FROM --platform=$BUILDPLATFORM docker/buildx-bin:${BUILDX_VERSION } AS buildx
7
7
8
8
FROM --platform=$BUILDPLATFORM docker:${DOCKER_VERSION} AS docker
9
9
COPY --from=buildx /buildx /usr/libexec/docker/cli-plugins/docker-buildx
You can’t perform that action at this time.
0 commit comments