Last active
February 2, 2020 16:49
-
-
Save itamarhaber/5124fc446d0fec2cfff914c237796cbf to your computer and use it in GitHub Desktop.
structor mkdocs
This file contains 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 | |
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 |
This file contains 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>=0.17.2 | |
pymdown-extensions>=1.4 | |
mkdocs-bootswatch>=0.4.0 | |
mkdocs-material>=2.2.6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment