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 a7e6d7f commit b172d1aCopy full SHA for b172d1a
docker/Dockerfile
@@ -18,10 +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
# jazzy no longer works on xenial as ruby is too old.
24
-RUN if [ "${ubuntu_version}" != "xenial" ] ; then gem install jazzy; fi
+RUN if [ "${ubuntu_version}" = "focal" ] ; then echo "gem: --no-document" > ~/.gemrc; fi
+RUN if [ "${ubuntu_version}" = "focal" ] ; then gem install jazzy; fi
25
26
# tools
27
RUN mkdir -p $HOME/.tools
0 commit comments