Created
July 18, 2016 08:33
-
-
Save joelwurtz/92525e6a37b670b05b3489b19c2548c7 to your computer and use it in GitHub Desktop.
Sphinx doc on alpine
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.4 | |
RUN apk --update add python py-pip && \ | |
rm -rf /var/cache/apk | |
RUN pip install Sphinx --no-cache-dir && \ | |
pip install sphinx_rtd_theme --no-cache-dir && \ | |
pip install alabaster --no-cache-dir && \ | |
pip install sphinx_bootstrap_theme --no-cache-dir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment