Skip to content
Permalink
Browse files

Fixed Docker image for default themes

  • Loading branch information
squidfunk committed Jan 5, 2021
1 parent 022cd8e commit 64e9a496f604ebfa1fb2ce740b0379993ca8fd96
Showing with 10 additions and 1 deletion.
  1. +10 −1 Dockerfile
@@ -23,6 +23,9 @@ FROM python:3.8.1-alpine3.11
# Build-time flags
ARG WITH_PLUGINS=true

# Packages directory
ENV PACKAGES=/usr/local/lib/python3.8/site-packages

# Set build directory
WORKDIR /tmp

@@ -49,7 +52,13 @@ RUN \
'mkdocs-redirects>=1.0'; \
fi \
&& apk del .build gcc musl-dev \
&& rm -rf /usr/local/lib/python3.8/site-packages/mkdocs/themes/*/* \
&& \
for theme in mkdocs readthedocs; do \
rm -rf ${PACKAGES}/mkdocs/themes/$theme; \
ln -s \
${PACKAGES}/material \
${PACKAGES}/mkdocs/themes/$theme; \
done \
&& rm -rf /tmp/*

# Set working directory

0 comments on commit 64e9a49

Please sign in to comment.