Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump base gem versions #122

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion py3_ruby/Dockerfile
Expand Up @@ -23,7 +23,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \

# skip installing gem documentation
RUN echo 'gem: --no-rdoc --no-ri --no-document' >> "/etc/gemrc" && \
gem install bundler -v 1.17
gem install bundler -v --no-document 1.17.3
rantler marked this conversation as resolved.
Show resolved Hide resolved

##################################################
# Python installation
Expand Down
2 changes: 1 addition & 1 deletion ruby/2.1/Dockerfile
Expand Up @@ -11,7 +11,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \

# skip installing gem documentation
RUN echo 'gem: --no-rdoc --no-ri --no-document' >> "/etc/gemrc" && \
gem install bundler -v 1.17 --no-document
gem install bundler -v --no-document 1.17.3

# LABEL must be last for proper base image discoverability
LABEL repository.socrata/ruby:2.1=""
2 changes: 1 addition & 1 deletion ruby/2.2/Dockerfile
Expand Up @@ -11,7 +11,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \

# skip installing gem documentation
RUN echo 'gem: --no-rdoc --no-ri --no-document' >> "/etc/gemrc" && \
gem install bundler -v 1.17 --no-document
gem install bundler -v --no-document 1.17.3

# LABEL must be last for proper base image discoverability
LABEL repository.socrata/ruby:2.2=""
4 changes: 2 additions & 2 deletions ruby/2.3.5/Dockerfile
Expand Up @@ -11,8 +11,8 @@ RUN mkdir -p /usr/local/etc \
ENV RUBY_MAJOR 2.3
ENV RUBY_VERSION 2.3.5
ENV RUBY_DOWNLOAD_SHA256 7d3a7dabb190c2da06c963063342ca9a214bcd26f2158e904f0ec059b065ffda
ENV RUBYGEMS_VERSION 2.7.4
ENV BUNDLER_VERSION 1.17
ENV RUBYGEMS_VERSION 2.7.8
ENV BUNDLER_VERSION 1.17.3

# some of ruby's build scripts are written in ruby
# we purge system ruby later to make sure our final image uses what we just built
Expand Down
4 changes: 2 additions & 2 deletions ruby/2.3.6/Dockerfile
Expand Up @@ -11,8 +11,8 @@ RUN mkdir -p /usr/local/etc \
ENV RUBY_MAJOR 2.3
ENV RUBY_VERSION 2.3.6
ENV RUBY_DOWNLOAD_SHA256 e0d969ac22d4a403c1204868bb9c0d068aa35045bb3934cf50b17b7f66059f56
ENV RUBYGEMS_VERSION 2.7.4
ENV BUNDLER_VERSION 1.17
ENV RUBYGEMS_VERSION 2.7.8
ENV BUNDLER_VERSION 1.17.3

# some of ruby's build scripts are written in ruby
# we purge system ruby later to make sure our final image uses what we just built
Expand Down
4 changes: 1 addition & 3 deletions ruby/2.3/Dockerfile
Expand Up @@ -9,11 +9,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get purge -y --auto-remove software-properties-common && \
rm -rf /var/lib/apt/lists/*

# RUN gem update --system 3.0.2

# skip installing gem documentation
RUN echo 'gem: --no-rdoc --no-ri --no-document' >> "/etc/gemrc" && \
gem install bundler -v 1.17 --no-document
gem install bundler -v --no-document 1.17.3

# LABEL must be last for proper base image discoverability
LABEL repository.socrata/ruby2.3=""
4 changes: 2 additions & 2 deletions ruby/2.5.0/Dockerfile
Expand Up @@ -11,8 +11,8 @@ RUN mkdir -p /usr/local/etc \
ENV RUBY_MAJOR 2.5
ENV RUBY_VERSION 2.5.0
ENV RUBY_DOWNLOAD_SHA256 1da0afed833a0dab94075221a615c14487b05d0c407f991c8080d576d985b49b
ENV RUBYGEMS_VERSION 2.7.4
ENV BUNDLER_VERSION 1.17
ENV RUBYGEMS_VERSION 2.7.8
ENV BUNDLER_VERSION 1.17.3

# some of ruby's build scripts are written in ruby
# we purge system ruby later to make sure our final image uses what we just built
Expand Down
4 changes: 2 additions & 2 deletions ruby/2.5.3/Dockerfile
Expand Up @@ -11,8 +11,8 @@ RUN mkdir -p /usr/local/etc \
ENV RUBY_MAJOR 2.5
ENV RUBY_VERSION 2.5.3
ENV RUBY_DOWNLOAD_SHA256 1cc9d0359a8ea35fc6111ec830d12e60168f3b9b305a3c2578357d360fcf306f
ENV RUBYGEMS_VERSION 2.7.4
ENV BUNDLER_VERSION 1.17
ENV RUBYGEMS_VERSION 2.7.8
ENV BUNDLER_VERSION 1.17.3

# some of ruby's build scripts are written in ruby
# we purge system ruby later to make sure our final image uses what we just built
Expand Down
2 changes: 1 addition & 1 deletion runit-ruby/2.2/Dockerfile
Expand Up @@ -11,7 +11,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \

# skip installing gem documentation
RUN echo 'gem: --no-rdoc --no-ri --no-document' >> "/etc/gemrc" && \
gem install bundler -v 1.17 --no-document
gem install bundler -v --no-document 1.17.3

# LABEL must be last for proper base image discoverability
LABEL repository.socrata/runit-ruby2.2=""
4 changes: 2 additions & 2 deletions runit-ruby/2.3.5/Dockerfile
Expand Up @@ -11,8 +11,8 @@ RUN mkdir -p /usr/local/etc \
ENV RUBY_MAJOR 2.3
ENV RUBY_VERSION 2.3.5
ENV RUBY_DOWNLOAD_SHA256 7d3a7dabb190c2da06c963063342ca9a214bcd26f2158e904f0ec059b065ffda
ENV RUBYGEMS_VERSION 2.7.4
ENV BUNDLER_VERSION 1.17
ENV RUBYGEMS_VERSION 2.7.8
ENV BUNDLER_VERSION 1.17.3

# some of ruby's build scripts are written in ruby
# we purge system ruby later to make sure our final image uses what we just built
Expand Down
4 changes: 2 additions & 2 deletions runit-ruby/2.3.6/Dockerfile
Expand Up @@ -11,8 +11,8 @@ RUN mkdir -p /usr/local/etc \
ENV RUBY_MAJOR 2.3
ENV RUBY_VERSION 2.3.6
ENV RUBY_DOWNLOAD_SHA256 e0d969ac22d4a403c1204868bb9c0d068aa35045bb3934cf50b17b7f66059f56
ENV RUBYGEMS_VERSION 2.7.4
ENV BUNDLER_VERSION 1.16.1
ENV RUBYGEMS_VERSION 2.7.8
ENV BUNDLER_VERSION 1.17.3

# some of ruby's build scripts are written in ruby
# we purge system ruby later to make sure our final image uses what we just built
Expand Down
2 changes: 1 addition & 1 deletion runit-ruby/2.3/Dockerfile
Expand Up @@ -13,7 +13,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \

# skip installing gem documentation
RUN echo 'gem: --no-rdoc --no-ri --no-document' >> "/etc/gemrc" && \
gem install bundler --no-document -v 1.17
gem install bundler -v --no-document -v 1.17.3
rantler marked this conversation as resolved.
Show resolved Hide resolved

# LABEL must be last for proper base image discoverability
LABEL repository.socrata/runit-ruby2.3=""
4 changes: 2 additions & 2 deletions runit-ruby/2.5.0/Dockerfile
Expand Up @@ -11,8 +11,8 @@ RUN mkdir -p /usr/local/etc \
ENV RUBY_MAJOR 2.5
ENV RUBY_VERSION 2.5.0
ENV RUBY_DOWNLOAD_SHA256 1da0afed833a0dab94075221a615c14487b05d0c407f991c8080d576d985b49b
ENV RUBYGEMS_VERSION 2.7.4
ENV BUNDLER_VERSION 1.17
ENV RUBYGEMS_VERSION 2.7.8
ENV BUNDLER_VERSION 1.17.3

# some of ruby's build scripts are written in ruby
# we purge system ruby later to make sure our final image uses what we just built
Expand Down
4 changes: 2 additions & 2 deletions runit-ruby/2.5.3/Dockerfile
Expand Up @@ -11,8 +11,8 @@ RUN mkdir -p /usr/local/etc \
ENV RUBY_MAJOR 2.5
ENV RUBY_VERSION 2.5.3
ENV RUBY_DOWNLOAD_SHA256 1cc9d0359a8ea35fc6111ec830d12e60168f3b9b305a3c2578357d360fcf306f
ENV RUBYGEMS_VERSION 2.7.6
ENV BUNDLER_VERSION 1.17
ENV RUBYGEMS_VERSION 2.7.8
ENV BUNDLER_VERSION 1.17.3

# some of ruby's build scripts are written in ruby
# we purge system ruby later to make sure our final image uses what we just built
Expand Down