Commit 8c8c6e0a authored by Adam Reese's avatar Adam Reese

Merge pull request #575 from adamreese/fix/docker-tag

fix(Makefile): remove -f on docker tag
parents dd4263a0 a17d56ab
......@@ -63,7 +63,7 @@ endif
.PHONY: container
container: .project .docker binary extras
docker build -t $(FULL_IMAGE):$(TAG) -f Dockerfile .
docker tag -f $(FULL_IMAGE):$(TAG) $(FULL_IMAGE):latest
docker tag $(FULL_IMAGE):$(TAG) $(FULL_IMAGE):latest
.project:
ifeq ($(DOCKER_REGISTRY), gcr.io)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment