google-sre-ebook/Dockerfile
2018-05-16 10:52:38 -07:00

19 lines
273 B
Docker

FROM ubuntu:latest
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
build-essential \
calibre \
pandoc \
ruby \
ruby-dev \
wget \
zlib1g-dev
RUN gem install bundler --no-ri --no-rdoc
COPY . /
RUN bundle install