We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66fb9c0 commit 3a6c717Copy full SHA for 3a6c717
docker/Dockerfile
@@ -18,9 +18,9 @@ RUN apt-get update && apt-get install -y lsof dnsutils netcat-openbsd net-tools
18
19
# ruby and jazzy for docs generation
20
RUN apt-get update && apt-get install -y ruby ruby-dev libsqlite3-dev build-essential
21
-# switch of gem docs building
22
-RUN echo "gem: --no-document" > ~/.gemrc
23
-RUN if [ "${ubuntu_version}" != "xenial" ] ; then gem install jazzy -v 0.13.7 ; fi
+# jazzy no longer works on older version of ubuntu as ruby is too old.
+RUN if [ "${ubuntu_version}" = "focal" ] ; then echo "gem: --no-document" > ~/.gemrc ; fi
+RUN if [ "${ubuntu_version}" = "focal" ] ; then gem install jazzy ; fi
24
25
# tools
26
RUN mkdir -p $HOME/.tools
0 commit comments