Restore original dockerfile

This commit is contained in:
Mahmoud Hossam 2019-01-18 02:39:21 +02:00 committed by Nemo
parent 815f05f16c
commit ceb4d3db91
1 changed files with 27 additions and 0 deletions

27
Dockerfile Normal file
View File

@ -0,0 +1,27 @@
# LTS Image
FROM ubuntu:18.04
LABEL maintainer="github.google-sre-ebook@captnemo.in"
ARG DEBIAN_FRONTEND="noninteractive"
COPY . /src/
WORKDIR /src
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
calibre \
pandoc \
ruby \
ruby-dev \
wget \
zlib1g-dev \
&& gem install bundler --no-ri --no-rdoc \
&& bundle install \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["/src/bootstrap.sh", "docker"]
VOLUME ["/output"]