Add docker build cmd in Makefile

This commit is contained in:
Joep 2023-09-08 21:37:46 +02:00
parent 3e435673ea
commit 22854bf699

View File

@ -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