Skip to content

Commit

Permalink
Updated location of get-pip.py in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
klokan committed Mar 11, 2016
1 parent ea08c18 commit 10e52b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND noninteractive

RUN apt-get -qq update \
&& apt-get -qq -y --no-install-recommends install curl \
&& curl https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py | python \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
&& mkdir -p /var/www

COPY . /var/www/epsg.io
Expand All @@ -16,4 +16,4 @@ RUN pip install -q -r requirements.txt

EXPOSE 8080

CMD gunicorn --workers 4 --bind 0.0.0.0:8080 --log-level info --reload app:app
CMD gunicorn --workers 4 --bind 0.0.0.0:8080 --log-level info --reload app:app

0 comments on commit 10e52b8

Please sign in to comment.