We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 562d2c2 commit ca355a8Copy full SHA for ca355a8
.ruby-version
@@ -1 +1 @@
1
-3.1.2
+3.1.7
Dockerfile
@@ -1,5 +1,4 @@
FROM registry.access.redhat.com/ubi8/ruby-31
2
-
3
USER root
4
5
# Configure users and groups
@@ -10,7 +9,9 @@ RUN groupadd -g 40054 alma && \
10
9
find / -user 1001 -exec chown -h bfs {} \; || true
11
12
COPY --chown=bfs Gemfile* .ruby-version ./
13
-RUN bundle install --system
+RUN bundle config set force_ruby_platform true
+RUN bundle config set system 'true'
14
+RUN bundle install
15
COPY --chown=bfs . .
16
17
USER bfs
docker-compose.yml
@@ -20,5 +20,3 @@ services:
20
secrets:
21
SSH_KEY:
22
file: secrets/SSH_KEY
23
24
-version: "3.8"
0 commit comments