mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-25 06:49:28 +01:00
14 lines
311 B
Docker
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/*
|