Skip to content

Commit

Permalink
Add mkdocs autorefs plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
rconway committed Apr 16, 2024
1 parent 49eccdd commit a5961f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# Ignore everything - the Dockerfile uses no local files
*
!docs/requirements.txt
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
FROM squidfunk/mkdocs-material
RUN pip install mike
COPY ./docs/requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -U -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt
RUN pip install --no-cache-dir -U mike
RUN git config --global --add safe.directory /docs

0 comments on commit a5961f2

Please sign in to comment.