-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
33 lines (31 loc) · 884 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
33
FROM alpine:3.7
ARG SOURCE_TYPE="Git"
ARG SOURCE_URL="https://github.com/temando/docker-doc-platform"
ARG SOURCE_COMMIT
LABEL com.temando.name="docker-doc-platform" \
com.temando.description="Docker image for publishing Temando documentation." \
com.temando.vendor="Temando Pty Ltd" \
com.temando.vcs-type=$SOURCE_TYPE \
com.temando.vcs-url=$SOURCE_URL \
com.temando.vcs-ref=$SOURCE_COMMIT
# Install Basic Tools
RUN apk update --no-cache && apk --no-cache add \
bash \
git \
nodejs \
nodejs-npm \
openssh \
py2-pip \
yarn \
&& pip --no-cache-dir install \
awscli \
mkdocs \
mkdocs-material \
pygments \
pymdown-extensions \
python-markdown-math \
&& yarn global add \
markdownlint-cli \
markdown-spellcheck \
write-good \
phantomjs-prebuilt