diff --git a/Dockerfile b/Dockerfile index ee3a01c..885b9e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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 \ No newline at end of file +CMD gunicorn --workers 4 --bind 0.0.0.0:8080 --log-level info --reload app:app