2019-03-05 11:16:45 -08:00
|
|
|
DOCKER_TAG ?= cloudflare-ddns-dev-${USER}
|
2020-01-21 17:44:02 -08:00
|
|
|
.PHONY: clean all
|
2019-03-07 13:49:06 -08:00
|
|
|
|
|
|
|
.PHONY: default
|
2019-03-05 11:16:45 -08:00
|
|
|
default: test
|
|
|
|
|
2019-03-07 13:49:06 -08:00
|
|
|
.PHONY:test
|
2019-03-05 11:16:45 -08:00
|
|
|
test:
|
|
|
|
@echo ok
|
|
|
|
|
2019-03-07 13:49:06 -08:00
|
|
|
.PHONY: build
|
|
|
|
build: build/qemu-x86_64-static
|
2019-03-05 11:16:45 -08:00
|
|
|
docker build . -t ${DOCKER_TAG}
|
|
|
|
|
2019-03-07 13:49:06 -08:00
|
|
|
build/qemu-arm-static:
|
|
|
|
./get_qemu.sh arm
|
|
|
|
|
|
|
|
build/qemu-x86_64-static:
|
|
|
|
./get_qemu.sh x86_64
|
|
|
|
|
|
|
|
build/qemu-aarch64-static:
|
|
|
|
./get_qemu.sh aarch64
|
|
|
|
|
|
|
|
.PHONY: cross-build-arm
|
|
|
|
cross-build-arm: build/qemu-arm-static
|
|
|
|
docker build --build-arg REPO=arm32v6 --build-arg ARCH=arm . -t ${DOCKER_TAG}-linux-arm
|
|
|
|
|
2020-01-10 13:38:09 -08:00
|
|
|
.PHONY: cross-build-arm64
|
2019-03-07 13:49:06 -08:00
|
|
|
cross-build-arm64: build/qemu-aarch64-static
|
|
|
|
docker build --build-arg REPO=arm64v8 --build-arg ARCH=aarch64 . -t ${DOCKER_TAG}-linux-arm64
|
|
|
|
|
|
|
|
.PHONY: run
|
2019-03-05 11:16:45 -08:00
|
|
|
run: build
|
2020-01-21 17:44:02 -08:00
|
|
|
docker run --rm \
|
2019-03-05 11:16:45 -08:00
|
|
|
-e CF_API_EMAIL=${CF_API_EMAIL} \
|
|
|
|
-e CF_API_KEY=${CF_API_KEY} \
|
2020-01-21 17:44:02 -08:00
|
|
|
${DOCKER_TAG} \
|
|
|
|
"${DOMAIN}"
|