IMAGE=docker.crute.me/strongswan:latest all: docker build -t $(IMAGE) . all-no-cache: docker build --no-cache -t $(IMAGE) . run: @echo "Not configured" @exit 1 publish: docker push $(IMAGE)