pandoc: builder for vbatts/pandoc

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2015-12-09 12:36:22 -05:00
parent 23f09aff00
commit 3b1532a996
2 changed files with 9 additions and 0 deletions

3
pandoc/Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM fedora:23
RUN dnf install -y pandoc texlive && dnf clean all
ENTRYPOINT ["/usr/bin/pandoc"]

6
pandoc/Makefile Normal file
View File

@ -0,0 +1,6 @@
DOCKER ?= $(shell which docker)
default:
$(DOCKER) build -t $(shell whoami)/pandoc .