Merge pull request #54 from remialvado/fix/fix-wale-dependency

fix(deps): fix dependency toward wal-e to avoid issues with Python mi…
This commit is contained in:
Yi EungJun 2016-10-08 22:23:35 +09:00 committed by GitHub
commit 3cb431a35c

View File

@ -3,7 +3,7 @@ FROM postgres:9.4
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y python-dev lzop pv daemontools curl build-essential \ && apt-get install -y python-dev lzop pv daemontools curl build-essential \
&& curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python \ && curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python \
&& pip install wal-e \ && pip install 'wal-e<1.0.0' \
&& apt-get remove -y build-essential python-dev \ && apt-get remove -y build-essential python-dev \
&& apt-get autoremove -y \ && apt-get autoremove -y \
&& apt-get clean \ && apt-get clean \