summary refs log tree commit diff
path: root/Makefile
blob: d0a3ec9d183f198dd653254133ac8a46f7a02ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
build:
	docker build --no-cache . -t deepblue
sign:
	./sign.sh
up: sign builld
	docker run --net customnetwork --ip 172.42.0.2 -d deepblue --name blueproxy
clean:
	rm -fv intercept*

all: sign build up