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