From 7f261ebe6cc60c01fd10f5f86f1c22d512be3f5f Mon Sep 17 00:00:00 2001 From: Ken Cochrane Date: Wed, 1 Oct 2014 21:11:10 -0400 Subject: [PATCH] Fixed issue with docs not getting built due to ssl error. Signed-off-by: Ken Cochrane --- docs/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index a50b396624..3c58193b99 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -4,7 +4,7 @@ FROM debian:jessie MAINTAINER Sven Dowideit (@SvenDowideit) -RUN apt-get update && apt-get install -y make python-pip python-setuptools vim-tiny git gettext +RUN apt-get update && apt-get install -y make python-pip python-setuptools vim-tiny git gettext python-dev libssl-dev RUN pip install mkdocs @@ -14,7 +14,7 @@ RUN pip install mkdocs #RUN pip install MarkdownTools2 # this version works, the current versions fail in different ways -RUN pip install awscli==1.3.9 +RUN pip install awscli==1.4.4 pyopenssl==0.12 # make sure the git clone is not an old cache - we've published old versions a few times now ENV CACHE_BUST Jul2014