Rename alpine dockerfile

This commit is contained in:
Mahmoud Hossam 2019-01-18 02:38:59 +02:00 committed by Nemo
parent de9ad69717
commit 815f05f16c
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
FROM ruby:alpine
LABEL maintainer="github.google-sre-ebook@captnemo.in"
LABEL maintainer="docker@captnemo.in"
RUN apk add \
build-base \
@ -17,11 +17,11 @@ COPY Gemfile* /tmp/
WORKDIR /tmp
RUN gem install bundler --no-document \
RUN gem install bundler --no-ri --no-document \
&& bundle install
WORKDIR /src
ENTRYPOINT ["/src/bootstrap.sh", "docker"]
ENTRYPOINT ["/src/bootstrap.sh", "docker", "epub"]
VOLUME ["/output"]