From 96ded0e65ca10d5f11c582f59fa52f22897a8000 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Sat, 5 Nov 2022 22:49:25 -0400 Subject: [PATCH] Force build on `make up` --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 06150fc..4be02ff 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,6 @@ backend: @cd backend && go run . .PHONY: backend - ## frontend: Build and run the frontend from source frontend: @npx vue-cli-service serve @@ -26,7 +25,7 @@ frontend: ## up: Build and run in docker compose up: - docker compose up -d + docker compose up --build -d .PHONY: up ## teardown: Teardown docker