Skip to content

Commit 4823449

Browse files
committed
Fix asciidoctor version
1 parent 4480a50 commit 4823449

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bccutil-prow.Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ RUN curl -fsSL https://rpm.nodesource.com/setup_16.x | bash - \
2727

2828
RUN npm install -g netlify-cli@v14.2.0 --unsafe-perm=true
2929

30-
RUN gem install asciidoctor asciidoctor-diagram
30+
# Need to stay on asciidoctor 2.0.20
31+
RUN gem install asciidoctor-diagram && \
32+
# Need to stay on asciidoctor 2.0.20
33+
gem install asciidoctor -v 2.0.20 && \
34+
gem uninstall asciidoctor -v '> 2.0.20' && \
35+
yum clean all
3136

3237
RUN git config --system --add safe.directory '*'
3338

0 commit comments

Comments
 (0)