Skip to content

Commit a699184

Browse files
authored
Merge pull request #12 from LibrePCB/fix-pip-url
Fix broken URL to get-pip.py for Python 2.7
2 parents 02c482a + 615ff84 commit a699184

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

debian-8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update -q && apt-get -y -q install --no-install-recommends \
3636
&& rm -rf /var/lib/apt/lists/*
3737

3838
# Install PIP (the version from APT is not sufficient)
39-
RUN curl "https://bootstrap.pypa.io/get-pip.py" -o get-pip.py \
39+
RUN curl "https://bootstrap.pypa.io/2.7/get-pip.py" -o get-pip.py \
4040
&& python get-pip.py
4141

4242
# Install Python packages

ubuntu-14.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update -q && apt-get -y -q install --no-install-recommends \
3636
&& rm -rf /var/lib/apt/lists/*
3737

3838
# Install PIP (the version from APT is not sufficient)
39-
RUN curl "https://bootstrap.pypa.io/get-pip.py" -o get-pip.py \
39+
RUN curl "https://bootstrap.pypa.io/2.7/get-pip.py" -o get-pip.py \
4040
&& python get-pip.py
4141

4242
# Install Python packages

ubuntu-16.04-qt5.12.3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ RUN wget -cq "$LINUXDEPLOYQT_URL" -O /linuxdeployqt.AppImage \
5858
&& rm /linuxdeployqt.AppImage
5959

6060
# Install PIP (the version from APT is not sufficient)
61-
RUN curl "https://bootstrap.pypa.io/get-pip.py" -o get-pip.py \
61+
RUN curl "https://bootstrap.pypa.io/2.7/get-pip.py" -o get-pip.py \
6262
&& python get-pip.py
6363

6464
# Install Python packages

ubuntu-16.04-qt5.14.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ RUN wget -cq "$LINUXDEPLOYQT_URL" -O /linuxdeployqt.AppImage \
5959
&& rm /linuxdeployqt.AppImage
6060

6161
# Install PIP (the version from APT is not sufficient)
62-
RUN curl "https://bootstrap.pypa.io/get-pip.py" -o get-pip.py \
62+
RUN curl "https://bootstrap.pypa.io/2.7/get-pip.py" -o get-pip.py \
6363
&& python get-pip.py
6464

6565
# Install Python packages

ubuntu-16.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update -q && apt-get -y -q install --no-install-recommends \
3636
&& rm -rf /var/lib/apt/lists/*
3737

3838
# Install PIP (the version from APT is not sufficient)
39-
RUN curl "https://bootstrap.pypa.io/get-pip.py" -o get-pip.py \
39+
RUN curl "https://bootstrap.pypa.io/2.7/get-pip.py" -o get-pip.py \
4040
&& python get-pip.py
4141

4242
# Install Python packages

0 commit comments

Comments
 (0)