mock build

This commit is contained in:
alexey
2025-03-15 00:01:18 +03:00
parent 9cf2aabc65
commit 998f87cee3
61 changed files with 3581 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
FROM docker.io/redhat/ubi8:latest
RUN dnf module -y enable ruby:3.1
RUN dnf install -y ruby git
RUN gem install bundler
WORKDIR /src
RUN ls -lR
COPY ../ /src
RUN bundle install

View File

@@ -0,0 +1,8 @@
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