File tree Expand file tree Collapse file tree 4 files changed +41
-27
lines changed Expand file tree Collapse file tree 4 files changed +41
-27
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ FROM ruby:3.1.2-alpine3.16 AS builder
2
+
3
+ RUN apk update && apk add --virtual build-dependencies build-base
4
+
5
+ RUN gem install listen ascii_binder
6
+
7
+ FROM ruby:3.1.2-alpine3.16
8
+
9
+ COPY --from=builder /usr/local/bundle /usr/local/bundle
10
+
11
+ RUN apk add --update --no-cache diffutils findutils git
12
+
13
+ RUN git config --system --add safe.directory '*'
14
+
15
+ WORKDIR /src
16
+
17
+ CMD ["/bin/sh" ]
Original file line number Diff line number Diff line change
1
+ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
2
+
3
+ WORKDIR /src
4
+
5
+ RUN microdnf install -y git ruby which && microdnf clean all && rm -rf /var/cache/yum
6
+
7
+ RUN gem install asciidoctor asciidoctor-diagram
8
+
9
+ RUN git config --system --add safe.directory '*'
10
+
11
+ CMD ["/bin/bash" ]
Original file line number Diff line number Diff line change
1
+ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
2
+
3
+ WORKDIR /src
4
+
5
+ RUN microdnf install -y git python39 python39-pip which && microdnf clean all && rm -rf /var/cache/yum
6
+
7
+ COPY ./aura.tar.gz /src
8
+
9
+ RUN python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel && pip install --no-cache-dir /src/aura.tar.gz
10
+
11
+ RUN git config --system --add safe.directory '*'
12
+
13
+ CMD ["/bin/bash" ]
You can’t perform that action at this time.
0 commit comments