diff --git a/script/make-rules/image.mk b/script/make-rules/image.mk index 08bc9d7fc..8a886ea6c 100644 --- a/script/make-rules/image.mk +++ b/script/make-rules/image.mk @@ -21,7 +21,7 @@ # DOCKER := docker -DOCKER_SUPPORTED_API_VERSION ?= 1.32|1.40 +DOCKER_SUPPORTED_API_VERSION ?= 1.32|1.40|1.41 REGISTRY_PREFIX ?= cubxxw BASE_IMAGE = centos:centos8 diff --git a/script/make-rules/tools.mk b/script/make-rules/tools.mk index b5c19c778..a2788a51b 100644 --- a/script/make-rules/tools.mk +++ b/script/make-rules/tools.mk @@ -133,8 +133,8 @@ install.github-release: ## install.coscli: Install coscli, used to upload files to cos .PHONY: install.coscli install.coscli: - @wget -q https://github.com/tencentyun/coscli/releases/download/v0.10.2-beta/coscli-linux -O ${HOME}/bin/coscli - @chmod +x ${HOME}/bin/coscli + @wget -q https://github.com/tencentyun/coscli/releases/download/v0.13.0-beta/coscli-linux -O ${TOOLS_DIR}/coscli + @chmod +x ${TOOLS_DIR}/coscli ## install.coscmd: Install coscmd, used to upload files to cos .PHONY: install.coscmd @@ -203,11 +203,6 @@ install.richgo: install.rts: @$(GO) install github.com/galeone/rts/cmd/rts@latest -## install.codegen: Install code generator, used to generate code -.PHONY: install.codegen -install.codegen: - @$(GO) install ${ROOT_DIR}/tools/codegen/codegen.go - ## tools.help: Display help information about the tools package .PHONY: tools.help tools.help: script/make-rules/tools.mk