浏览代码

Merge pull request #3584 from tianon/fix-docs-dockerfile

Fix docs Dockerfile to install correctly again
Andy Rothfusz 11 年之前
父节点
当前提交
fe6c9e8fd7
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/Dockerfile

+ 2 - 2
docs/Dockerfile

@@ -8,8 +8,8 @@ run apt-get update
 run apt-get install -y python-setuptools make
 run apt-get install -y python-setuptools make
 run easy_install pip
 run easy_install pip
 #from docs/requirements.txt, but here to increase cacheability
 #from docs/requirements.txt, but here to increase cacheability
-run pip install Sphinx==1.1.3
-run pip install sphinxcontrib-httpdomain==1.1.9
+run pip install --no-use-wheel Sphinx==1.1.3
+run pip install --no-use-wheel sphinxcontrib-httpdomain==1.1.9
 add . /docs
 add . /docs
 run cd /docs; make docs
 run cd /docs; make docs