Files
documentation/Dockerfile
T
Huang Jin a723f28060 Install Sphinx tools with exact versions
This change attempts to fix search box non-working problem.
2018-10-17 18:04:15 -07:00

11 lines
297 B
Docker
Executable File

FROM ubuntu:18.04
RUN apt-get update
RUN apt-get -y install python python-pip graphviz
RUN pip install sphinx==1.8.1 docutils==0.14 sphinx-rtd-theme==0.4.2 sphinxcontrib-websupport==1.1.0
RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo
USER docker
CMD /bin/bash