From 69b2ce781db59b1183d0f4c4c5a4080567316b41 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Sun, 16 Jul 2017 19:37:03 -0700 Subject: [PATCH] Add some targets to drop into a shell --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 7d5388c..210871d 100644 --- a/Makefile +++ b/Makefile @@ -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