mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-14 17:46:33 +00:00
32 lines
597 B
Makefile
32 lines
597 B
Makefile
.PHONY: build-x86 build-arm build-all test
|
|
|
|
DOCKER_TAG ?= docker-duplicity-cron
|
|
|
|
default: build-x86
|
|
|
|
test: test-x86
|
|
|
|
build-x86:
|
|
docker build -f ./Dockerfile.ubuntu -t $(DOCKER_TAG):ubuntu .
|
|
|
|
build-arm:
|
|
docker build -f ./Dockerfile.raspbian -t $(DOCKER_TAG):raspbian .
|
|
|
|
build-all: build-x86 build-arm
|
|
|
|
test-x86: build-x86
|
|
./test.sh $(DOCKER_TAG) ubuntu
|
|
|
|
test-arm: build-arm
|
|
./test.sh $(DOCKER_TAG) raspbian
|
|
|
|
test-all: test-x86 test-arm
|
|
|
|
shell-x86: build-x86
|
|
docker run --rm -it $(DOCKER_TAG):ubuntu bash
|
|
|
|
shell-arm: build-arm
|
|
docker run --rm -it $(DOCKER_TAG):raspbian bash
|
|
|
|
shell: shell-x86
|