diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-09-19 16:17:06 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-09-19 16:17:06 -0700 |
commit | d7917836f19fe207fdae7d3ac2f697285002d0c3 (patch) | |
tree | 89f06e086f8fe82c915221be25e9d281c2339aaf | |
parent | 7c20fab3a78eaf0c6838dca10bd0c4b72ebdda9a (diff) | |
download | pandoc-d7917836f19fe207fdae7d3ac2f697285002d0c3.tar.gz |
linux/Makefile - added interact target.
-rw-r--r-- | linux/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linux/Makefile b/linux/Makefile index 798dcba27..4e8eeb00a 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -8,7 +8,11 @@ build: docker run --env TREE=$(TREE) --env REVISION=$(REVISION) \ -v $(ARTIFACTS):/artifacts alpine-pandoc +interact: + docker run --env TREE=$(TREE) --env REVISION=$(REVISION) \ + -v $(ARTIFACTS):/artifacts -it alpine-pandoc bash + setup: docker pull alpine:edge -.PHONY: build setup +.PHONY: build setup interact |