Fix url for get_pip macro

Stein only.

Change-Id: I1d175b603bbc3adbd371a2d66401ed380378ea9e
This commit is contained in:
Dincer Celik 2021-03-19 12:30:40 +03:00
parent 8ebfc19590
commit 1bc50ebba6
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@
{% else %}
{% set python='python3' %}
{% endif %}
RUN curl https://bootstrap.pypa.io/{% if distro_python_version == '2.7' %}2.7/{% endif %}get-pip.py -o get-pip.py \
RUN curl https://bootstrap.pypa.io/pip/{% if distro_python_version == '2.7' %}2.7/{% endif %}get-pip.py -o get-pip.py \
&& {{python}} get-pip.py \
&& rm get-pip.py
{% endmacro %}