9 lines
177 B
Docker
9 lines
177 B
Docker
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
|