File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ COPY --chown=essi:essi Gemfile Gemfile.lock ./
41
41
# DEV ONLY - REMOVE LATER
42
42
# COPY --chown=essi:essi vendor/engines/bulkrax /app/vendor/engines/bulkrax
43
43
# COPY --chown=essi:essi vendor/engines/allinson_flex /app/vendor/engines/allinson_flex
44
- RUN gem update bundler
44
+ # hold back from bundler 2.5 onwards until ruby is updated
45
+ # RUN gem update bundler
46
+ RUN gem install bundler -v "~> 2.4.22"
45
47
RUN bundle install -j 2 --retry=3
46
48
47
49
COPY --chown=essi:essi . .
@@ -65,7 +67,9 @@ RUN bundle config --global frozen 1
65
67
COPY --chown=essi:essi Gemfile Gemfile.lock ./
66
68
# DEV ONLY - REMOVE LATER
67
69
# COPY vendor/engines/allinson_flex vendor/engines/allinson_flex
68
- RUN gem update bundler && \
70
+ # hold back from bundler 2.5 onwards until ruby is updated
71
+ # RUN gem update bundler && \
72
+ RUN gem install bundler -v "~> 2.4.22" && \
69
73
bundle install -j 2 --retry=3 --deployment --without development
70
74
71
75
COPY --chown=essi:essi . .
You can’t perform that action at this time.
0 commit comments