Skip to content

Commit 20a0565

Browse files
committed
fix: address bundler system and without flag deprecations in Dockerfile (alpine)
1 parent 71fe2fe commit 20a0565

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile-alpine

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ COPY . /devdocs
99

1010
RUN 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 && \

0 commit comments

Comments
 (0)