9 lines
301 B
Makefile
9 lines
301 B
Makefile
.PHONY: build-production
|
|
build-production: ## Build the production docker image.
|
|
@docker buildx build \
|
|
--platform linux/amd64,linux/arm64/v8 \
|
|
--tag registry.tanshu.com/brewman:latest \
|
|
$(if $(TAG),--tag registry.tanshu.com/brewman:$(TAG)) \
|
|
--push \
|
|
git@git.tanshu.com:tanshu/brewman.git
|