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