Restructered repository and added dockerfiles.

This commit is contained in:
Luc Bijl 2023-09-30 17:21:33 +02:00
parent 6f626ea686
commit 25dde6a119
8 changed files with 86 additions and 22 deletions

View 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