aboutsummaryrefslogtreecommitdiff
path: root/linux/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-10-22 14:29:20 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-10-22 14:29:20 -0700
commit5a7a3f15d28e19c6c0f30817824a2b78ccc874e0 (patch)
tree7742eefa73c026aa7bd2006a17a1c5222e69a298 /linux/Makefile
parent432be748ceaa5e19be62b14d8ae6dcdedb2de82b (diff)
downloadpandoc-5a7a3f15d28e19c6c0f30817824a2b78ccc874e0.tar.gz
Linux package: new debian-based non-static build.
Diffstat (limited to 'linux/Makefile')
-rw-r--r--linux/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/Makefile b/linux/Makefile
index 4e8eeb00a..cec1db797 100644
--- a/linux/Makefile
+++ b/linux/Makefile
@@ -4,15 +4,15 @@ REVISION?=1
build:
mkdir -p $(ARTIFACTS)
- docker build -t alpine-pandoc .
+ docker build -t debian-pandoc .
docker run --env TREE=$(TREE) --env REVISION=$(REVISION) \
- -v $(ARTIFACTS):/artifacts alpine-pandoc
+ -v $(ARTIFACTS):/artifacts debian-pandoc
interact:
docker run --env TREE=$(TREE) --env REVISION=$(REVISION) \
- -v $(ARTIFACTS):/artifacts -it alpine-pandoc bash
+ -v $(ARTIFACTS):/artifacts -it debian-pandoc bash
setup:
- docker pull alpine:edge
+ docker pull debian:jessie
.PHONY: build setup interact