Skip to content

Commit

Permalink
Updating dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbrezel committed Mar 20, 2024
1 parent 462be9d commit 35e55e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions Dockerfile.rake
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ ENV LANG=C.UTF-8 \
# Store Bundler settings in the project's root
ENV BUNDLE_APP_CONFIG=.bundle

# Upgrade RubyGems and install the latest Bundler version
RUN gem update --system && \
gem install bundler
# Install specific bundler version
RUN gem install bundler -v 2.4.22

# Copy over the dependency files
COPY Gemfile .
Expand Down
5 changes: 2 additions & 3 deletions Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ ENV LANG=C.UTF-8 \
# Store Bundler settings in the project's root
ENV BUNDLE_APP_CONFIG=.bundle

# Upgrade RubyGems and install the latest Bundler version
RUN gem update --system && \
gem install bundler
# Install specific bundler version
RUN gem install bundler -v 2.4.22

# Copy over the dependency files
COPY Gemfile .
Expand Down

0 comments on commit 35e55e6

Please sign in to comment.