Skip to content

Instantly share code, notes, and snippets.

@wshihadeh
Last active April 24, 2020 20:04
Show Gist options
  • Save wshihadeh/e5debef482027f5b5a837d74b61d9a87 to your computer and use it in GitHub Desktop.
Save wshihadeh/e5debef482027f5b5a837d74b61d9a87 to your computer and use it in GitHub Desktop.
Mkdocs Dockerfile
FROM alpine:3.10
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 py3-pip \
&& pip3 install --user -r requirements.txt
mkdocs==1.0.4
pymdown-extensions==6.1
mkdocs-bootswatch==1.0
mkdocs-material==4.4.3
markdown-include==0.5.1
mkdocs-exclude==1.0.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment