File tree Expand file tree Collapse file tree 4 files changed +22
-1
lines changed Expand file tree Collapse file tree 4 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 1
- # openshift-build-tools
1
+ # openshift-build-tools
2
+
3
+ Dockerfiles to validate and build openshift-docs AsciiDoc.
Original file line number Diff line number Diff line change
1
+ FROM registry.access.redhat.com/ubi8/ruby-27 AS ruby
2
+ USER root
3
+ ENV LANG=en_US.UTF-8
4
+ RUN gem install listen ascii_binder && yum clean all
5
+ RUN git config --system --add safe.directory '*'
6
+ CMD ["/bin/bash" ]
Original file line number Diff line number Diff line change
1
+ FROM registry.access.redhat.com/ubi8/ubi-minimal AS base
2
+ USER root
3
+ RUN microdnf install -y git ruby which && microdnf clean all && rm -rf /var/cache/yum
4
+ RUN gem install asciidoctor asciidoctor-diagram rouge
5
+ RUN git config --system --add safe.directory '*'
6
+ CMD ["/bin/bash" ]
Original file line number Diff line number Diff line change
1
+ FROM registry.access.redhat.com/ubi8/ubi-minimal AS base
2
+ USER root
3
+ COPY ./aura.tar.gz /
4
+ RUN microdnf install -y git python39 python39-pip which && microdnf clean all && rm -rf /var/cache/yum
5
+ RUN python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel pyyaml lxml requests && pip install --no-cache-dir /aura.tar.gz
6
+ RUN git config --system --add safe.directory '*'
7
+ CMD ["/bin/bash" ]
You can’t perform that action at this time.
0 commit comments