From c98c31083d03cc3b541c2e1a9b6c2fd332141e5e Mon Sep 17 00:00:00 2001 From: Alex Brazier Date: Thu, 18 May 2017 10:54:19 +0100 Subject: [PATCH] Fix bug in alpine dockerfile --- Dockerfile-alpine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-alpine b/Dockerfile-alpine index dbca43cb..ecbe5828 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -6,7 +6,7 @@ COPY . /devdocs RUN apk --update add nodejs build-base libstdc++ gzip git zlib-dev && \ gem install bundler && \ - bundle install --system --without test --no-document && \ + bundle install --system --without test && \ thor docs:download --all && \ thor assets:compile && \ apk del gzip build-base git zlib-dev && \