Compare commits

...

2 Commits
v1.0.3 ... v1.0

Author SHA1 Message Date
mmatur
0b4fb0de33 feat: add dockerfile for documentation 2021-10-05 10:31:52 +02:00
Michael
a3ab3043f5 [doc] add requirements.txt
To be able to generate versionned documentation
2018-01-19 15:33:33 +01:00
2 changed files with 12 additions and 0 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

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
mkdocs==0.16.0
mkdocs-bootswatch==0.4.0