Restructered repository and added dockerfiles.
This commit is contained in:
parent
6f626ea686
commit
25dde6a119
8 changed files with 86 additions and 22 deletions
15
dockerfile/git-mkdocs/dev-mkdocs.dockerfile
Normal file
15
dockerfile/git-mkdocs/dev-mkdocs.dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM python:3-alpine
|
||||
|
||||
ARG USER=1001
|
||||
|
||||
RUN adduser -h /usr/src/mkdocs -D -u $USER mkdocs
|
||||
|
||||
USER mkdocs
|
||||
RUN mkdir -p /usr/src/mkdocs/build
|
||||
WORKDIR /usr/src/mkdocs/build
|
||||
|
||||
RUN pip install --upgrade pip
|
||||
|
||||
RUN pip install pymdown-extensions \
|
||||
&& pip install mkdocs \
|
||||
&& pip install mkdocs-material
|
Loading…
Add table
Add a link
Reference in a new issue