Compare commits

...

2 Commits
v1.1.2 ... v1.1

Author SHA1 Message Date
mmatur
00315d3d55 feat: add dockerfile for documentation 2021-10-05 10:30:33 +02:00
Michael
146a1016a8 [doc] fix version in requirements.txt
To be able to generate versionned documentation
2018-01-19 15:44:58 +01:00
2 changed files with 12 additions and 1 deletions

10
docs.Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM alpine:3.7
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/bin
COPY requirements.txt /mkdocs/
WORKDIR /mkdocs
VOLUME /mkdocs
RUN apk --no-cache --no-progress add py-pip \
&& pip install --user -r requirements.txt

View File

@@ -1 +1,2 @@
mkdocs>=0.9.0
mkdocs==0.16.0
mkdocs-bootswatch==0.4.0