File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ LABEL org.opencontainers.image.authors="dev@kjuly.com" \
5
5
org.opencontainers.image.source=https://github.com/Kjuly/docker-mkdocs \
6
6
org.opencontainers.image.description="A tiny Docker image for MkDocs, based on Alpine Linux with Python3."
7
7
8
- RUN apk add --no-cache py3-pip && \
8
+ # The libraries for image processing (cairo, pngquant) are entirely optional,
9
+ # and only need to be installed if you want to use the social plugin or the optimize plugin.
10
+ # Refter to https://squidfunk.github.io/mkdocs-material/plugins/requirements/image-processing
11
+ RUN apk add --no-cache py3-pip cairo pngquant && \
9
12
python3 -m venv .venv && source .venv/bin/activate \
10
13
pip install pip setuptools certifi urllib3 requests idna --upgrade && \
11
14
pip install mkdocs && \
You can’t perform that action at this time.
0 commit comments