mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
16 lines
299 B
Text
16 lines
299 B
Text
|
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"]
|