From 62ac171501a0b229a8f2a7d2ef0381f89380b11e Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Thu, 4 Oct 2018 19:24:44 +0200 Subject: [PATCH] Fix docker image tags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 26633402d..142a16cfd 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ nothing: docker: $(IMAGES:%=docker-image.%) docker-image.%: % - @ docker build --no-cache --rm -f docker/$^/Dockerfile -t crusttech/api-$^:latest . + @ docker build --no-cache --rm -f Dockerfile.$^ -t crusttech/api-$^:latest . docker-push: $(IMAGES:%=docker-push.%)