From 6fa25caa5b69b8e1f563b61fe6122155f3cc8d05 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Thu, 27 Feb 2025 14:16:39 -0500 Subject: [PATCH] Ajouter Makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b6e4afc --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +## This Makefile uses the help target explained in the following blogpost: +## +## https://victoria.dev/blog/how-to-create-a-self-documenting-makefile/ + +.DEFAULT_GOAL := help + +.PHONY: help +help: ## Show this help + @egrep -h '\s##\s' $(MAKEFILE_LIST) | \ + sort | \ + awk \ + 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' + +.PHONY: build +build: ## Use `docker build` to build the container image + docker build . -f Dockerfile -t git.agecem.com/bottin/presences:latest