diff --git a/components/packaging/Makefile b/components/packaging/Makefile index 536107b077..53e19bc831 100644 --- a/components/packaging/Makefile +++ b/components/packaging/Makefile @@ -3,7 +3,7 @@ ENGINE_DIR:=$(CURDIR)/../engine CLI_DIR:=$(CURDIR)/../cli VERSION?=0.0.0-dev DOCKER_GITCOMMIT:=abcdefg -GO_VERSION:=1.10.2 +GO_VERSION:=1.10.3 .PHONY: help help: ## show make targets diff --git a/components/packaging/deb/Makefile b/components/packaging/deb/Makefile index 0760b9a0e7..bf3f12571e 100644 --- a/components/packaging/deb/Makefile +++ b/components/packaging/deb/Makefile @@ -4,7 +4,7 @@ ENGINE_DIR:=$(CURDIR)/../../engine CLI_DIR:=$(CURDIR)/../../cli GITCOMMIT?=$(shell cd $(ENGINE_DIR) && git rev-parse --short HEAD) VERSION?=0.0.0-dev -GO_VERSION:=1.10.2 +GO_VERSION:=1.10.3 DEB_VERSION=$(shell ./gen-deb-ver $(ENGINE_DIR) "$(VERSION)") CHOWN:=docker run --rm -v $(CURDIR):/v -w /v alpine chown EPOCH?= diff --git a/components/packaging/rpm/Makefile b/components/packaging/rpm/Makefile index 71b3d582da..c746907c54 100644 --- a/components/packaging/rpm/Makefile +++ b/components/packaging/rpm/Makefile @@ -3,7 +3,7 @@ ENGINE_DIR:=$(CURDIR)/../../engine CLI_DIR:=$(CURDIR)/../../cli GITCOMMIT=$(shell cd $(ENGINE_DIR) && git rev-parse --short HEAD) VERSION?=0.0.0-dev -GO_VERSION:=1.10.2 +GO_VERSION:=1.10.3 GEN_RPM_VER=$(shell ./gen-rpm-ver $(ENGINE_DIR) $(VERSION)) CHOWN=docker run --rm -i -v $(CURDIR):/v -w /v alpine chown RPMBUILD=docker run --privileged --rm -i\