Skip to content

Commit 7a3c75d

Browse files
authored
Fix docker make target
1 parent 894b9bf commit 7a3c75d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ publish:
5656

5757
.PHONY: docker
5858
docker: ## run in golang container, example: make docker run="make all"
59-
docker run --rm -v $(CURDIR):/app golang:1.14 $(args) sh -c "cd /app && $(run)"
59+
docker run --rm -v $(CURDIR):/app $(args) golang:1.14 sh -c "cd /app && $(run)"
6060

6161
.PHONY: help
6262
help:

0 commit comments

Comments
 (0)