From 175423ff9d4977969234eaf050239431ff4bdded Mon Sep 17 00:00:00 2001 From: Kyrylo Silin Date: Fri, 8 Mar 2019 01:37:23 +0200 Subject: circle: update Dockerfiles to have make & gcc installed This is needed in case we want to compile dependencies. Without `build-base` we will be getting errors: https://circleci.com/gh/pry/pry/6102 --- .circleci/ruby-1.9.3p551/Dockerfile | 4 ++-- .circleci/ruby-2.0.0p648/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to '.circleci') diff --git a/.circleci/ruby-1.9.3p551/Dockerfile b/.circleci/ruby-1.9.3p551/Dockerfile index 0fa80fad..2b066293 100644 --- a/.circleci/ruby-1.9.3p551/Dockerfile +++ b/.circleci/ruby-1.9.3p551/Dockerfile @@ -67,9 +67,9 @@ RUN set -ex \ && gem update --system $RUBYGEMS_VERSION \ && rm -r /usr/src/ruby-$RUBY_VERSION -RUN apk add --no-cache git nano +RUN apk add --no-cache git nano build-base -RUN gem update --system +RUN gem update --system 2.7.9 RUN gem install bundler --version "$BUNDLER_VERSION" --force diff --git a/.circleci/ruby-2.0.0p648/Dockerfile b/.circleci/ruby-2.0.0p648/Dockerfile index 66f29661..f5a301bc 100644 --- a/.circleci/ruby-2.0.0p648/Dockerfile +++ b/.circleci/ruby-2.0.0p648/Dockerfile @@ -67,9 +67,9 @@ RUN set -ex \ && gem update --system $RUBYGEMS_VERSION \ && rm -r /usr/src/ruby-$RUBY_VERSION -RUN apk add --no-cache git nano +RUN apk add --no-cache git nano build-base -RUN gem update --system +RUN gem update --system 2.7.9 RUN gem install bundler --version "$BUNDLER_VERSION" --force -- cgit v1.2.1