Add some targets to drop into a shell

This commit is contained in:
ViViDboarder 2017-07-16 19:37:03 -07:00
parent b3ff6b6cce
commit 69b2ce781d
1 changed files with 8 additions and 0 deletions

View File

@ -19,3 +19,11 @@ test-arm: build-arm
./test.sh $(DOCKER_TAG) raspbian
test-all: test-x86 test-arm
shell-x86: build-x86
docker run --rm -it $(DOCKER_TAG):ubuntu bash
shell-arm: build-arm
docker run --rm -it $(DOCKER_TAG):raspbian bash
shell: shell-x86