From 8291d39e6c43dcb57b2870b201306b54a6d76971 Mon Sep 17 00:00:00 2001 From: Alex Brazier Date: Mon, 15 May 2017 22:19:42 +0100 Subject: [PATCH] Remove maintainer form dockerfile --- Dockerfile | 1 - Dockerfile-alpine | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) 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 && \