Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev-support/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ RUN mkdir -p /opt/boost-library \
####
# hadolint ignore=DL3003
RUN mkdir -p /opt/pip \
&& curl -L https://bootstrap.pypa.io/get-pip.py > get-pip.py \
&& curl -L https://bootstrap.pypa.io/2.7/get-pip.py > get-pip.py \
&& mv get-pip.py /opt/pip \
&& cd /opt/pip \
&& python2.7 get-pip.py \
&& python2.7 get-pip.py "pip < 21.0" \
&& cd /root \
&& rm -rf /opt/pip

Expand Down
4 changes: 2 additions & 2 deletions dev-support/docker/Dockerfile_aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ RUN mkdir -p /opt/boost-library \
####
# hadolint ignore=DL3003
RUN mkdir -p /opt/pip \
&& curl -L https://bootstrap.pypa.io/get-pip.py > get-pip.py \
&& curl -L https://bootstrap.pypa.io/2.7/get-pip.py > get-pip.py \
&& mv get-pip.py /opt/pip \
&& cd /opt/pip \
&& python2.7 get-pip.py \
&& python2.7 get-pip.py "pip < 21.0" \
&& cd /root \
&& rm -rf /opt/pip

Expand Down