Skip to content

Commit

Permalink
Pin Golang images to debian stretch variant (docker#369)
Browse files Browse the repository at this point in the history
Pin Golang images to debian stretch variant
  • Loading branch information
seemethere committed Aug 6, 2019
2 parents 356c85b + 1310e39 commit aab70be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deb/Makefile
Expand Up @@ -7,7 +7,7 @@ VERSION?=0.0.0-dev
STATIC_VERSION=$(shell ../static/gen-static-ver $(ENGINE_DIR) $(VERSION))
GO_BASE_IMAGE=golang
GO_VERSION:=1.12.6
GO_IMAGE=$(GO_BASE_IMAGE):$(GO_VERSION)
GO_IMAGE=$(GO_BASE_IMAGE):$(GO_VERSION)-stretch
DEB_VERSION=$(shell ./gen-deb-ver $(CLI_DIR) "$(VERSION)")
CHOWN:=docker run --rm -v $(CURDIR):/v -w /v alpine chown
EPOCH?=5
Expand Down
2 changes: 1 addition & 1 deletion image/Makefile
Expand Up @@ -4,7 +4,7 @@ CLI_DIR:=$(CURDIR)/../../cli
VERSION?=0.0.0-dev
GO_BASE_IMAGE=golang
GO_VERSION:=1.12.6
ENGINE_GO_IMAGE=$(GO_BASE_IMAGE):$(GO_VERSION)
ENGINE_GO_IMAGE=$(GO_BASE_IMAGE):$(GO_VERSION)-stretch
STATIC_VERSION=$(shell ../static/gen-static-ver $(ENGINE_DIR) $(VERSION))
DOCKER_HUB_ORG?=dockereng
ARCH=$(shell uname -m)
Expand Down
2 changes: 1 addition & 1 deletion rpm/Makefile
Expand Up @@ -6,7 +6,7 @@ VERSION?=0.0.0-dev
STATIC_VERSION=$(shell ../static/gen-static-ver $(ENGINE_DIR) $(VERSION))
GO_BASE_IMAGE=golang
GO_VERSION:=1.12.6
GO_IMAGE?=$(GO_BASE_IMAGE):$(GO_VERSION)
GO_IMAGE?=$(GO_BASE_IMAGE):$(GO_VERSION)-stretch
GEN_RPM_VER=$(shell ./gen-rpm-ver $(CLI_DIR) $(VERSION))
CHOWN=docker run --rm -i -v $(CURDIR):/v -w /v alpine chown

Expand Down

0 comments on commit aab70be

Please sign in to comment.