Files
diun/docs/Dockerfile
2020-06-30 19:50:06 +02:00

15 lines
334 B
Docker

FROM squidfunk/mkdocs-material:5.4.0
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-exclude' \
'mkdocs-macros-plugin' \
&& apk del .build gcc musl-dev \
&& rm -rf /tmp/*