Docker-run was only useful in very specific projects. Projects should either define their own "run" in their Makefile, add a docker-compose.yaml, or specify instructions in the README.
23 lines
512 B
Makefile
23 lines
512 B
Makefile
.PHONY: docker-init
|
|
docker-init:
|
|
@touch VERSION
|
|
@touch IMAGE
|
|
|
|
.PHONY: buildx-context
|
|
buildx-context:
|
|
docker buildx create --name arm64 --use --platform linux/amd64,linux/arm64
|
|
|
|
.PHONY: buildx-clear
|
|
buildx-clear:
|
|
docker buildx rm arm64
|
|
|
|
.PHONY: build
|
|
build:
|
|
docker buildx build --load . -t $(IMAGE)
|
|
@docker buildx build --load . -t $(IMAGE_LATEST)
|
|
|
|
.PHONY: push
|
|
push:
|
|
docker buildx build --platform linux/amd64 --push . -t $(IMAGE)
|
|
@docker buildx build --platform linux/amd64 --push . -t $(IMAGE_LATEST)
|