From b64e5b1b0b5866ec51e27034fc716e877179bf17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 1 Jan 2020 01:48:55 +0100 Subject: [PATCH] Fix: Path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 61154c3..114272a 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ it: docker ## Runs the docker target docker: ## Builds, tags, and runs the Docker image docker build --tag ${DOCKER_IMAGE} . - docker run --interactive --rm --tty --workdir=/app --volume ${PWD}:/app ${DOCKER_IMAGE}:latest + docker run --interactive --rm --tty --workdir=/app --volume ${PWD}/.build:/app ${DOCKER_IMAGE}:latest help: ## Displays this list of targets with descriptions @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'