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
This commit is contained in:
Felipe Monteiro 2017-11-01 19:09:11 +00:00
parent 52a9632e40
commit a407eb55cd
1 changed files with 1 additions and 1 deletions

View File

@ -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: