1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

added a Dockerfile which installs all deps and builds the docs.

This commit is contained in:
Nick Stinemates 2013-08-29 23:49:41 +00:00
parent c4394decf8
commit c6702bebe1

15
docs/Dockerfile Normal file
View file

@ -0,0 +1,15 @@
from ubuntu:12.04
maintainer Nick Stinemates
run apt-get update
run apt-get install -y python-setuptools make
run easy_install pip
add . /docs
run pip install -r /docs/requirements.txt
run cd /docs; make docs
expose 8000
workdir /docs/_build/html
entrypoint ["python", "-m", "SimpleHTTPServer"]