From d316c185b3d4b392801f3538ced37781e6dc6500 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Mon, 30 May 2016 07:02:06 -0700 Subject: [PATCH] Main git repo, on master. Will fail till PR is merged --- depends/alpine_Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/depends/alpine_Dockerfile b/depends/alpine_Dockerfile index aeb2a242c..b95131b5a 100644 --- a/depends/alpine_Dockerfile +++ b/depends/alpine_Dockerfile @@ -30,11 +30,11 @@ RUN apk --no-cache add git \ bash \ sudo -RUN git clone https://github.com/wiredfool/Pillow.git /Pillow +RUN git clone https://github.com/python-pillow/Pillow.git /Pillow RUN pip install virtualenv && virtualenv /vpy && source /vpy/bin/activate && pip install nose RUN echo "#!/bin/bash" >> /test && \ - echo "source /vpy/bin/activate && cd /Pillow && git checkout alpine-setup " >> test && \ + echo "source /vpy/bin/activate && cd /Pillow " >> test && \ echo "pushd depends && ./install_webp.sh && popd" >> test && \ echo "LIBRARY_PATH=/lib:/usr/lib make install && make test" >> test