Skip to content
This repository has been archived by the owner on Mar 6, 2021. It is now read-only.

Fix: Path #62

Merged
merged 1 commit into from
Jan 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix: Path
localheinz committed Jan 1, 2020

Verified

This commit was signed with the committer’s verified signature.
localheinz Andreas Möller
commit b64e5b1b0b5866ec51e27034fc716e877179bf17
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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}'