aboutsummaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-09-19 16:17:06 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-09-19 16:17:06 -0700
commitd7917836f19fe207fdae7d3ac2f697285002d0c3 (patch)
tree89f06e086f8fe82c915221be25e9d281c2339aaf /linux
parent7c20fab3a78eaf0c6838dca10bd0c4b72ebdda9a (diff)
downloadpandoc-d7917836f19fe207fdae7d3ac2f697285002d0c3.tar.gz
linux/Makefile - added interact target.
Diffstat (limited to 'linux')
-rw-r--r--linux/Makefile6
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