Fix make shell

The "shell" rule in the Makefile uses docker to run a bash session,
however it was depending on the "all" rule which assumes non-docker local
development. This commit fixes it by making it depend on the "runcimage" rule.

Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
Tibor Vass 2018-02-28 05:23:01 +00:00
parent 4bb1fe4ace
commit 10a4cde4b9
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ rootlessintegration: runcimage
localrootlessintegration: all
tests/rootless.sh
shell: all
shell: runcimage
docker run -e TESTFLAGS -ti --privileged --rm -v $(CURDIR):/go/src/$(PROJECT) $(RUNC_IMAGE) bash
install: