You've already forked documentation
mirror of
https://github.com/Dasharo/documentation.git
synced 2026-03-06 15:26:51 -08:00
a723f28060
This change attempts to fix search box non-working problem.
11 lines
297 B
Docker
Executable File
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
|