summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2019-03-08 01:37:23 +0200
committerKyrylo Silin <silin@kyrylo.org>2019-03-08 01:37:23 +0200
commit175423ff9d4977969234eaf050239431ff4bdded (patch)
tree8a0dde1480c36ec5f6a75035fa323cace1e397ad /.circleci
parent2d5572dcfec023e1c486d9f28f1b03d77ae3daf4 (diff)
downloadpry-175423ff9d4977969234eaf050239431ff4bdded.tar.gz
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
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/ruby-1.9.3p551/Dockerfile4
-rw-r--r--.circleci/ruby-2.0.0p648/Dockerfile4
2 files changed, 4 insertions, 4 deletions
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