Created
October 5, 2017 13:40
-
-
Save webframp/481fb0587d32d8245e9280ddfd49a286 to your computer and use it in GitHub Desktop.
webframp/sphinx-doc 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:latest | |
LABEL maintainer="[email protected]" | |
ENV SPHINX_VERSION='1.6.4' | |
RUN apk add --update python3 make bash && \ | |
ln -s /usr/bin/python3 /usr/bin/python && \ | |
ln -s /usr/bin/pip3 /usr/bin/pip && \ | |
rm -rf /var/cache/apk/* | |
RUN pip install Sphinx==$SPHINX_VERSION sphinx_rtd_theme | |
CMD ["/bin/bash"] | |
WORKDIR /doc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment