From 3d6e6f88ea27a44736f1aa09036e87a3422de81f Mon Sep 17 00:00:00 2001 From: nakoo Date: Sat, 2 Feb 2019 07:31:45 +0900 Subject: [PATCH] Fix: Added build-base and curl. --- ruby/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ruby/Dockerfile b/ruby/Dockerfile index 244da68..317b4f7 100644 --- a/ruby/Dockerfile +++ b/ruby/Dockerfile @@ -2,9 +2,8 @@ FROM ruby:2.6-alpine RUN mkdir /usr/src/app \ && chown $(id -un):$(id -gn) /usr/src/app \ - && apk add --no-cache libxml2-dev libxslt-dev \ - && gem install bundler \ - && bundle config build.nokogiri --use-system-libraries + && apk add --no-cache build-base curl libxml2-dev libxslt-dev \ + && gem install bundler ENV RAILS_ENV=development