From 0d14150660d0d53a04cabc9ada28abdc2531114f Mon Sep 17 00:00:00 2001 From: Grady Phillips Date: Mon, 14 Jun 2021 16:09:26 -0500 Subject: [PATCH 1/2] update get-pip.py link to work for Python2.7 --- beckley/challenge/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beckley/challenge/Dockerfile b/beckley/challenge/Dockerfile index 3ba05e9..03f6a93 100644 --- a/beckley/challenge/Dockerfile +++ b/beckley/challenge/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:16.04 RUN apt-get update -y; \ apt-get install -y apache2 python curl; \ a2enmod cgi; \ - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py; \ + curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py; \ python get-pip.py; \ pip install skyfield; From 3951d5df2bfd1fdfe4b016e66347acd144cca311 Mon Sep 17 00:00:00 2001 From: Grady Phillips Date: Mon, 14 Jun 2021 16:23:51 -0500 Subject: [PATCH 2/2] update get-pip.py link to work for Python2.7 --- beckley/solver/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beckley/solver/Dockerfile b/beckley/solver/Dockerfile index 12fd083..c08e349 100644 --- a/beckley/solver/Dockerfile +++ b/beckley/solver/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:18.04 #Install Apache, Python, Curl. Enable CGI. Install PIP, use PIP to install skyfield RUN apt-get update -y; \ apt-get install -y python curl python-dev git libssl-dev libffi-dev build-essential; \ - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py; \ + curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py; \ python get-pip.py; \ pip install skyfield;\ pip install --upgrade pwntools