Files
diun/Dockerfile.mkdocs
2020-06-22 04:03:30 +02:00

14 lines
311 B
Docker

FROM squidfunk/mkdocs-material:5.3.2
RUN \
apk add --no-cache \
git \
git-fast-import \
openssh \
&& apk add --no-cache --virtual .build gcc musl-dev \
&& pip install --no-cache-dir \
'markdown-include' \
'mkdocs-macros-plugin' \
&& apk del .build gcc musl-dev \
&& rm -rf /tmp/*