docker-restic-cron/Makefile

22 lines
418 B
Makefile
Raw Normal View History

2017-06-29 01:12:49 +00:00
.PHONY: build-x86 build-arm build-all
DOCKER_TAG ?= docker-duplicity-cron
default: build-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