Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions hack/docs.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
# syntax=docker/dockerfile:1

ARG MKDOCS_VERSION="8.3.9"
ARG MKDOCS_VERSION="9.6.20"

FROM squidfunk/mkdocs-material:${MKDOCS_VERSION} AS base
RUN apk add --no-cache git git-fast-import openssl \
&& apk add --no-cache --virtual .build gcc musl-dev \
RUN apk add --no-cache git git-fast-import openssl gcc musl-dev \
&& pip install --no-cache-dir \
'lunr==0.7.0' \
'lunr==0.8.0' \
'markdown-include==0.8.1' \
'mkdocs-awesome-pages-plugin==2.9.3' \
'mkdocs-awesome-pages-plugin==2.10.1' \
'mkdocs-exclude==1.0.2' \
'mkdocs-git-revision-date-localized-plugin==1.3.0' \
'mkdocs-macros-plugin==1.3.7' \
&& apk del .build gcc musl-dev \
&& rm -rf /tmp/*
'mkdocs-macros-plugin==1.4.0'

FROM base AS generate
RUN --mount=type=bind,target=. \
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ markdown_extensions:
- meta
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
Expand Down