mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
16 lines
299 B
Docker
16 lines
299 B
Docker
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"]
|