From 61c2933d84cd3ecc80648765a8b38d9f40a46618 Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Mon, 20 Mar 2023 06:35:29 -0300 Subject: [PATCH] feat: added build option in dev command --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index ec015431e..70407436b 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,14 @@ build: dev: make install_frontend +ifeq ($(build),1) + @echo 'Running docker compose up with build' docker compose up --build +else + @echo 'Running docker compose up without build' + docker compose up +endif + publish: make build