From e153747eec1cccf022ae2589ee8784d10c0e770e Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Mon, 3 Oct 2022 22:37:50 +0200 Subject: [PATCH] feat(Makefile): pour construire l'image --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e4260e6 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +NAME ?= rawdog +VERSION ?= 0.1 + +build: + docker build -t ${NAME}:${VERSION} .