Skip to content

Commit a5961f2

Browse files
committed
Add mkdocs autorefs plugin
1 parent 49eccdd commit a5961f2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11

22
# Ignore everything - the Dockerfile uses no local files
33
*
4+
!docs/requirements.txt

Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
FROM squidfunk/mkdocs-material
2-
RUN pip install mike
2+
COPY ./docs/requirements.txt /tmp/requirements.txt
3+
RUN pip install --no-cache-dir -U -r /tmp/requirements.txt \
4+
&& rm /tmp/requirements.txt
5+
RUN pip install --no-cache-dir -U mike
36
RUN git config --global --add safe.directory /docs

0 commit comments

Comments
 (0)