-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #709 from evemonk/update-rubygems-and-bundler
Update rubygems and bundler
- Loading branch information
Showing
2 changed files
with
4 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
# syntax = docker/dockerfile:1 | ||
|
||
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile | ||
ARG RUBY_VERSION=3.2.2 | ||
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base | ||
FROM registry.docker.com/library/ruby:3.2.2-slim as base | ||
|
||
LABEL maintainer="Igor Zubkov <[email protected]>" | ||
|
||
|
@@ -19,8 +15,8 @@ ENV RAILS_ENV="production" \ | |
RUBY_YJIT_ENABLE="1" | ||
|
||
RUN set -eux; \ | ||
gem update --system "3.5.1" ; \ | ||
gem install bundler --version "2.5.1" --force ; \ | ||
gem update --system "3.5.3" ; \ | ||
gem install bundler --version "2.5.3" --force ; \ | ||
gem --version ; \ | ||
bundle --version | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -344,4 +344,4 @@ RUBY VERSION | |
ruby 3.2.2p53 | ||
|
||
BUNDLED WITH | ||
2.5.1 | ||
2.5.3 |