1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

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
This commit is contained in:
Kyrylo Silin 2019-03-08 01:37:23 +02:00
parent 2d5572dcfe
commit 175423ff9d
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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