diff options
author | Matthew Peveler <matt.peveler@gmail.com> | 2018-06-20 06:23:36 -0400 |
---|---|---|
committer | elextr <elextr@gmail.com> | 2018-06-20 20:23:36 +1000 |
commit | 1f617d225b36e5d88b47e4f2c2d13983c401ef9b (patch) | |
tree | 4722b8e100114c5291d2b1cb4af59388d175b137 | |
parent | 27102042f38c2caf3384e3d8ae4d6f79a7b30c48 (diff) | |
download | asciidoc-py3-1f617d225b36e5d88b47e4f2c2d13983c401ef9b.tar.gz |
Update dockerfile to better run all components of asciidoc (#18)
-rw-r--r-- | Dockerfile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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" |