From a407eb55cdf13b96b4074b3682933ce69b14c833 Mon Sep 17 00:00:00 2001 From: Felipe Monteiro Date: Wed, 1 Nov 2017 19:09:11 +0000 Subject: [PATCH] Fix Makefile using wrong target in docker build command Changes `docker build` command to use '.' instead of 'images/deckhand/' as the Dockerfile source directory. Change-Id: Iceee9c64e15889c34701679357cc9ef37edee33d --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1b0db01c..328608d7 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ dry-run: clean # Make targets intended for use by the primary targets above. .PHONY: build_deckhand build_deckhand: - docker build -t $(IMAGE_PREFIX)/$(DECKHAND_IMAGE_NAME):$(IMAGE_TAG) images/deckhand/ + docker build -t $(IMAGE_PREFIX)/$(DECKHAND_IMAGE_NAME):$(IMAGE_TAG) . .PHONY: clean clean: