Last active
April 24, 2020 20:04
-
-
Save wshihadeh/e5debef482027f5b5a837d74b61d9a87 to your computer and use it in GitHub Desktop.
Mkdocs Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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