From 22854bf699639aec2bba8678b1e977acb1380d19 Mon Sep 17 00:00:00 2001 From: Joep Date: Fri, 8 Sep 2023 21:37:46 +0200 Subject: [PATCH] Add docker build cmd in Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 743dafe8..5c1b7dc9 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,10 @@ build-frontend: ## Build frontend build-backend: ## Build backend $Q $(go) build -ldflags '$(LDFLAGS)' -o . +.PHONY: build-docker +build-docker: ## Build docker + docker build . -t filebrowser:dev + .PHONY: test test: | test-frontend test-backend ## Run all tests