diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-10-22 14:29:20 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-10-22 14:29:20 -0700 |
commit | 5a7a3f15d28e19c6c0f30817824a2b78ccc874e0 (patch) | |
tree | 7742eefa73c026aa7bd2006a17a1c5222e69a298 /linux/Makefile | |
parent | 432be748ceaa5e19be62b14d8ae6dcdedb2de82b (diff) | |
download | pandoc-5a7a3f15d28e19c6c0f30817824a2b78ccc874e0.tar.gz |
Linux package: new debian-based non-static build.
Diffstat (limited to 'linux/Makefile')
-rw-r--r-- | linux/Makefile | 8 |
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 |