File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ RUN apt-get update && \
1111
1212COPY Gemfile Gemfile.lock Rakefile /devdocs/
1313
14- RUN bundle install --system && \
14+ RUN bundle config set path.system true && \
15+ bundle install && \
1516 rm -rf ~/.gem /root/.bundle/cache /usr/local/bundle/cache
1617
1718COPY . /devdocs
Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ COPY . /devdocs
99
1010RUN apk --update add nodejs build-base libstdc++ gzip git zlib-dev libcurl && \
1111 gem install bundler && \
12- bundle install --system --without test && \
12+ bundle config set path.system true && \
13+ bundle config set without 'test' && \
14+ bundle install && \
1315 thor docs:download --all && \
1416 thor assets:compile && \
1517 apk del gzip build-base git zlib-dev && \
You can’t perform that action at this time.
0 commit comments