summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2018-06-20 06:23:36 -0400
committerelextr <elextr@gmail.com>2018-06-20 20:23:36 +1000
commit1f617d225b36e5d88b47e4f2c2d13983c401ef9b (patch)
tree4722b8e100114c5291d2b1cb4af59388d175b137
parent27102042f38c2caf3384e3d8ae4d6f79a7b30c48 (diff)
downloadasciidoc-py3-1f617d225b36e5d88b47e4f2c2d13983c401ef9b.tar.gz
Update dockerfile to better run all components of asciidoc (#18)
-rw-r--r--Dockerfile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index bb4ed02..260272b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,8 @@
FROM ubuntu:18.04
-RUN apt-get update
-RUN apt-get install -y python3 dvipng graphviz imagemagick lilypond source-highlight texlive-latex-base \ No newline at end of file
+RUN apt-get update && \
+ apt-get install -y python3 autoconf make wget unzip libxml2-utils xsltproc && \
+ apt-get install -y dvipng graphviz imagemagick lilypond source-highlight texlive-latex-base docbook-xsl
+
+COPY . "/srv/asciidoc"
+WORKDIR "/srv/asciidoc"