mirror of
https://github.com/cubixle/groxy.git
synced 2026-04-24 18:34:43 +01:00
9 lines
262 B
Makefile
9 lines
262 B
Makefile
.PHONY: build-docker
|
|
build-docker:
|
|
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t cubixle/groxy:latest --push .
|
|
|
|
.PHONY: build-docker-local
|
|
build-docker-local:
|
|
docker buildx build --platform linux/amd64 --load -t cubixle/groxy:local .
|
|
|