forked from kmuto/review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
22 lines (19 loc) · 680 Bytes
/
Copy pathDockerfile
File metadata and controls
22 lines (19 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file is a sample Dockerfile to build Re:VIEW documents.
#
# Build:
# $ docker build -t review .
#
# Usage:
# $ cd path/to/review/project
# $ docker run -it --rm -v `pwd`:/work review rake pdf
#
# cf. https://github.com/vvakame/docker-review/blob/master/Dockerfile
FROM debian:sid
MAINTAINER takahashim
RUN apt-get update \
&& apt-get install -y --no-install-recommends git-core ruby locales zip \
&& apt-get install -y --no-install-recommends texlive-lang-cjk texlive-lang-japanese texlive-fonts-recommended texlive-latex-extra ghostscript \
&& rm -rf /var/lib/apt/lists/*
RUN gem install review rake bundler --no-rdoc --no-ri
VOLUME ["/work"]
WORKDIR /work