Skip to content

Commit 71fe2fe

Browse files
committed
fix: address bundler system flag deprecation in Dockerfile
1 parent ec7198e commit 71fe2fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ RUN apt-get update && \
1111

1212
COPY 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

1718
COPY . /devdocs

0 commit comments

Comments
 (0)