Add docker tagging

Small tweak to tag docker image with current release number.
This commit is contained in:
Miek Gieben
2016-11-07 14:12:01 +00:00
parent 3d5be649a2
commit 769d42247e

View File

@@ -3,6 +3,7 @@ BUILD_VERBOSE := -v
TEST_VERBOSE := -v
DOCKER_IMAGE_NAME := $$USER/coredns
DOCKER_VERSION := $(shell grep 'coreVersion' coremain/version.go | awk '{ print $$3 }' | tr -d '"')
all: coredns
@@ -16,6 +17,7 @@ coredns: deps
docker: deps
CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w"
docker build -t $(DOCKER_IMAGE_NAME) .
docker tag $(DOCKER_IMAGE_NAME):latest $(DOCKER_IMAGE_NAME):$(DOCKER_VERSION)
.PHONY: deps
deps: