File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,9 @@ FROM base as build
12
12
RUN apt-get update -qq && \
13
13
apt-get install --no-install-recommends -y build-essential curl git
14
14
15
- # Install Nokigiri version that supports Ruby 2.7.8
16
- RUN gem install nokogiri -v 1.15.6
17
-
18
15
# add a newer version of Rubygems and Bundler
19
- RUN gem install bundler:2.3.22
20
- RUN gem update --system 3.3.22
16
+ RUN gem update --system
17
+ RUN gem install bundler
21
18
22
19
# Install Rails
23
20
ARG RAILS_VERSION=7.1.3.2
@@ -31,9 +28,6 @@ WORKDIR mail-notify-integration
31
28
# install the gems into the bundle
32
29
RUN bundle install
33
30
34
- # remove gems that will not work in Rails 5.2.8.1
35
- RUN if [ "${RAILS_VERSION}" = "5.2.8.1" ]; then bundle remove selenium-webdriver chromedriver-helper; fi
36
-
37
31
# Final stage for app image
38
32
FROM base
39
33
You can’t perform that action at this time.
0 commit comments