Skip to content

Commit 00c5b94

Browse files
committed
tests(compatibility): add minimal docker compose to quickly test against a specifi Python version
1 parent 7ef8da1 commit 00c5b94

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Reference: https://squidfunk.github.io/mkdocs-material/getting-started/#with-docker
2+
FROM python:3.8.19
3+
4+
COPY . .
5+
6+
RUN python3 -m pip install --no-cache-dir -U pip setuptools wheel \
7+
&& python3 -m pip install --no-cache-dir -U -r requirements/documentation.txt \
8+
&& python3 -m pip install --no-cache-dir .
9+
10+
RUN mkdocs build

0 commit comments

Comments
 (0)