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