From 6b99dd6eea18f55f1a1d4b59d182a03697fce7cd Mon Sep 17 00:00:00 2001 From: torreyjones Date: Thu, 28 Feb 2019 12:22:08 -0700 Subject: [PATCH] added asciidoctor to apt-get install command. this allows .adoc files to not generate errors asciidoc: ERROR: : line 4: unsafe: ifeval invalid --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d51d637..928d480 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM debian:stretch # Install pygments (for syntax highlighting) RUN apt-get -qq update \ - && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y --no-install-recommends libstdc++6 python-pygments git ca-certificates asciidoc curl \ + && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y --no-install-recommends libstdc++6 python-pygments git ca-certificates asciidoc asciidoctor curl \ && rm -rf /var/lib/apt/lists/* # Configuration variables