File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ BUILDTIME=$(shell date -u -d "@$${SOURCE_DATE_EPOCH:-$$(date +%s)}" --rfc-3339 n
16
16
CHOWN: =docker run --rm -v $(CURDIR ) :/v -w /v alpine chown
17
17
DEFAULT_PRODUCT_LICENSE: =Community Engine
18
18
DOCKER_GITCOMMIT: =abcdefg
19
- GO_VERSION: =1.16.5
19
+ GO_VERSION: =1.16.6
20
20
PLATFORM =Docker Engine - Community
21
21
SHELL: =/bin/bash
22
22
VERSION? =0.0.1-dev
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ ENGINE_DIR=$(realpath $(CURDIR)/../src/github.com/docker/docker)
5
5
GEN_STATIC_VER =$(shell ./gen-static-ver $(CLI_DIR ) $(VERSION ) )
6
6
HASH_CMD =docker run -v $(CURDIR ) :/sum -w /sum debian:jessie bash hash_files
7
7
DIR_TO_HASH: =build/linux
8
- DOCKER_CLI_PLUGIN_GOLANG_IMG =golang:1.16.3
8
+ DOCKER_CLI_GOLANG_IMG =golang:$( GO_VERSION )
9
9
10
10
.PHONY : help
11
11
help : # # show make targets
@@ -103,7 +103,7 @@ cross-mac-plugins: cross-mac-plugins-amd64 cross-mac-plugins-arm64
103
103
cross-mac-plugins-% : CLI_BUILD_DIR := mac
104
104
cross-mac-plugins-% :
105
105
mkdir -p build/$(CLI_BUILD_DIR ) /$* /docker
106
- GOOS=darwin GOARCH=$* docker run $(BUILD_PLUGIN_RUN_VARS ) $(DOCKER_CLI_PLUGIN_GOLANG_IMG ) /build
106
+ GOOS=darwin GOARCH=$* docker run $(BUILD_PLUGIN_RUN_VARS ) $(DOCKER_CLI_GOLANG_IMG ) /build
107
107
$(CHOWN ) -R $(shell id -u) :$(shell id -g) build/$(CLI_BUILD_DIR ) /$*
108
108
109
109
.PHONY : cross-win-plugins
@@ -113,6 +113,6 @@ cross-win-plugins: cross-win-plugins-amd64
113
113
cross-win-plugins-% : CLI_BUILD_DIR := win
114
114
cross-win-plugins-% :
115
115
mkdir -p build/$(CLI_BUILD_DIR ) /$* /docker/cli-plugins
116
- GOOS=windows GOARCH=$* docker run $(BUILD_PLUGIN_RUN_VARS ) $(DOCKER_CLI_PLUGIN_GOLANG_IMG ) /build
116
+ GOOS=windows GOARCH=$* docker run $(BUILD_PLUGIN_RUN_VARS ) $(DOCKER_CLI_GOLANG_IMG ) /build
117
117
$(CHOWN ) -R $(shell id -u) :$(shell id -g) build/$(CLI_BUILD_DIR ) /$*
118
118
find build/$(CLI_BUILD_DIR ) /$* /docker -type f -not -name " *.exe" -exec mv {} {}.exe \;
You can’t perform that action at this time.
0 commit comments