Files
linuxkit/licensing/Makefile
Justin Cormack 02fe82a79f add Makefile for licensing container
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-03-22 11:58:16 +00:00

13 lines
242 B
Makefile

.PHONY: license clean run
all: license
license: packages.lua Dockerfile license.sh
docker build -t license .
run: license
rm -rf output
docker run -it -v /etc:/hostetc -v /lib:/lib -v $(PWD)/output:/output license
clean:
rm -rf output