Add docker things for documentation
This commit is contained in:
parent
871d097b30
commit
4d1285d8e5
4 changed files with 41 additions and 0 deletions
11
docs.Dockerfile
Normal file
11
docs.Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM alpine
|
||||
|
||||
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/bin
|
||||
|
||||
COPY requirements.txt /mkdocs/
|
||||
WORKDIR /mkdocs
|
||||
|
||||
RUN apk --update upgrade \
|
||||
&& apk --no-cache --no-progress add py-pip \
|
||||
&& rm -rf /var/cache/apk/* \
|
||||
&& pip install --user -r requirements.txt
|
Loading…
Add table
Add a link
Reference in a new issue