forked from zembutsu/docs.docker.jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
32 lines (28 loc) · 834 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM ubuntu:16.04
MAINTAINER Toshiaki Baba <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Asia/Tokyo
RUN sed -i.bak -e "s%http://us.archive.ubuntu.com/ubuntu/%http://ftp.jaist.ac.jp/pub/Linux/ubuntu/%g" /etc/apt/sources.list
RUN apt-get -y update \
&& apt-get -y install \
language-pack-ja-base \
language-pack-ja \
&& apt-get clean
RUN apt-get -y update \
&& apt-get -y install \
texlive \
texlive-lang-cjk \
xdvik-ja \
dvipsk-ja \
gv \
texlive-fonts-recommended \
texlive-fonts-extra \
&& apt-get clean
RUN apt-get -y update \
&& apt-get -y install \
make \
python-pip \
&& apt-get clean
RUN pip install Sphinx==1.4.8
VOLUME ["/mnt"]
WORKDIR /mnt