apt-pkg-native/examples/on-trusty/Makefile
2017-12-12 20:45:01 +00:00

11 lines
236 B
Makefile

build:
docker build --network=mope --build-arg http_proxy=http://urika:3142 --tag trusty-dev-vm .
run: build
docker run --network=mope -v $(shell pwd)/../..:/mnt -it trusty-dev-vm
clean:
docker rmi trusty-dev-vm
.PHONY: build run