dockerfiles/pleroma/Makefile

25 lines
411 B
Makefile
Raw Normal View History

2022-06-28 12:40:36 +02:00
IMG_NAME=pleroma
REGISTRY=registry.monotremata.xyz
IMG=$(REGISTRY)/$(IMG_NAME)
PLATFORMS=linux/amd64
2021-02-23 19:28:50 +01:00
.PHONY: push buildx clean
2021-02-23 19:28:50 +01:00
out/image-id: Dockerfile entrypoint.sh
mkdir -p $(@D)
2022-06-28 12:40:36 +02:00
docker build -t $(IMG) .
echo $(IMG) > $@
2021-02-23 19:28:50 +01:00
push: out/image-id
2022-06-28 12:40:36 +02:00
docker image push $(IMG)
buildx: Dockerfile entrypoint.sh
docker buildx build \
--platform $(PLATFORMS) \
--tag $(IMG) \
--push \
.
clean:
rm -rf out