From 30aa159041a2165b84df675db8292d7cee84f71d Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Tue, 1 Oct 2019 21:14:05 +0200 Subject: [PATCH] Add a makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5de41b3 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +.PHONY: all build + +build: + docker build -f Dockerfile . + +all: build