diff --git a/Dockerfile b/Dockerfile index d4ec6f9e..314f6253 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ FROM ruby:2.4.1 -MAINTAINER Conor Heine WORKDIR /devdocs diff --git a/Dockerfile-alpine b/Dockerfile-alpine index f85a6322..dbca43cb 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -1,5 +1,4 @@ FROM ruby:2.4.1-alpine -MAINTAINER Conor Heine WORKDIR /devdocs @@ -7,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 && \ + bundle install --system --without test --no-document && \ thor docs:download --all && \ thor assets:compile && \ apk del gzip build-base git zlib-dev && \