aboutsummaryrefslogtreecommitdiff
path: root/strongswan/Makefile
blob: 79138027f70cc3071bc80d0715fb2738d2480866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)