Fix code location when mounting to docker-cli-shell-validate

Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
This commit is contained in:
Jean-Pierre Huynh 2017-06-29 22:57:26 +01:00
parent 501cf0e6d1
commit ffe8509663
2 changed files with 2 additions and 2 deletions

View File

@ -87,4 +87,4 @@ yamldocs: build_docker_image
.PHONY: shellcheck
shellcheck: build_shell_validate_image
docker run -ti --rm -v "$(CURDIR)":/tmp $(VALIDATE_IMAGE_NAME) make shellcheck
docker run -ti --rm $(MOUNTS) $(VALIDATE_IMAGE_NAME) make shellcheck

View File

@ -4,6 +4,6 @@ RUN apt-get update && \
apt-get -y install make shellcheck && \
apt-get clean
WORKDIR /tmp
WORKDIR /go/src/github.com/docker/cli
CMD bash