9 lines
177 B
9 lines
177 B
2 months ago
|
FROM docker.io/redhat/ubi9:latest
|
||
|
RUN dnf module -y enable ruby:3.3
|
||
|
RUN dnf install -y ruby git
|
||
|
RUN gem install bundler
|
||
|
WORKDIR /src
|
||
|
RUN ls -lR
|
||
|
COPY ../ /src
|
||
|
RUN bundle install
|