Update cleaning options

This commit is contained in:
Ari Timonen 2018-04-18 15:35:14 -04:00
parent ebc9da7318
commit 38c857692f
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ push:
clean:
rm -rf $(shell pwd)/build/*
docker ps -a | awk '{ print $$1,$$2 }' | grep $(IMAGE) |awk '{print $$1 }' |xargs -I {} docker rm {}
docker images -a |grep $(IMAGE) |awk '{print $$3}' |xargs -I {} docker rmi {}
test: build
@echo "TODO"