From 88aaa66d300401736444a3083692c59ed6684c06 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Thu, 18 Jun 2020 17:12:34 +0100 Subject: [PATCH] Fix up Makefile to match GitHub Action --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 236bedb..2fb434d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ -associate-eip: .FORCE +build: docker build -t associate-eip . docker run --rm associate-eip cat /go/bin/associate-eip > associate-eip chmod u+x associate-eip -.PHONY: .FORCE -.FORCE: \ No newline at end of file +.PHONY: build