forked from corelight/docker-aws-sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
45 lines (44 loc) · 1.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
FROM corelight/alpine-aws
LABEL maintainer="Corelight AWS Team <[email protected]>"
LABEL description="Builder/publisher for documentation with aws-cli and Sphinx"
RUN apk update && \
apk add -v \
chromium \
freetype \
harfbuzz \
libstdc++ \
make \
nss \
p7zip \
python3 \
py3-pip \
ttf-freefont && \
pip3 install -U \
alabaster==0.7.8 \
Babel==2.3.4 \
colorama==0.3.3 \
daemonize==2.3.1 \
docutils==0.12 \
imagesize==0.7.1 \
Jinja2==2.8 \
jmespath==0.7.1 \
MarkupSafe==0.23 \
passlib==1.6.5 \
pyasn1==0.1.8 \
Pygments==2.1.3 \
pyslack==0.3.0 \
python-dateutil==2.4.2 \
python-gitlab==2.2.0 \
pytz==2016.6.1 \
pyyaml==3.12 \
requests==2.10.0 \
rsa==3.4.2 \
six==1.10.0 \
snowballstemmer==1.2.1 \
sphinxemoji==0.1.4 \
sphinx-better-theme==0.1.5 \
sphinx-copybutton==0.2.8 \
sphinx-rtd-theme==0.1.9 \
Sphinx==2.2.2 && \
apk --purge -v del py3-pip && \
rm /var/cache/apk/*