mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 11:38:11 +00:00
13 lines
311 B
Text
13 lines
311 B
Text
FROM squidfunk/mkdocs-material:5.3.3
|
|
|
|
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/*
|