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 4480a50 commit 4823449Copy full SHA for 4823449
bccutil-prow.Dockerfile
@@ -27,7 +27,12 @@ RUN curl -fsSL https://rpm.nodesource.com/setup_16.x | bash - \
27
28
RUN npm install -g netlify-cli@v14.2.0 --unsafe-perm=true
29
30
-RUN gem install asciidoctor asciidoctor-diagram
+# 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
36
37
RUN git config --system --add safe.directory '*'
38
0 commit comments