Skip to content

Instantly share code, notes, and snippets.

@joelwurtz
Created July 18, 2016 08:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joelwurtz/92525e6a37b670b05b3489b19c2548c7 to your computer and use it in GitHub Desktop.
Save joelwurtz/92525e6a37b670b05b3489b19c2548c7 to your computer and use it in GitHub Desktop.
Sphinx doc on alpine
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