Skip to content
This repository was archived by the owner on Oct 28, 2024. It is now read-only.

Commit adc9318

Browse files
committed
fix ruby version too old error
1 parent defae63 commit adc9318

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ RUN apt-get update && apt-get install -y lsof dnsutils netcat-openbsd net-tools
1919
# ruby and jazzy for docs generation
2020
RUN apt-get update && apt-get install -y ruby ruby-dev libsqlite3-dev build-essential
2121
# jazzy no longer works on older version of ubuntu as ruby is too old.
22-
RUN if [ "${ubuntu_version}" = "focal" ] ; then echo "gem: --no-document" > ~/.gemrc ; fi
23-
RUN if [ "${ubuntu_version}" = "focal" ] ; then gem install jazzy ; fi
22+
RUN if [ "${ubuntu_version}" = "jammy" ] ; then echo "gem: --no-document" > ~/.gemrc ; fi
23+
RUN if [ "${ubuntu_version}" = "jammy" ] ; then gem install jazzy ; fi
2424

2525
# tools
2626
RUN mkdir -p $HOME/.tools

0 commit comments

Comments
 (0)