From 1bc50ebba67b52ad545123627b25a0f893f350f7 Mon Sep 17 00:00:00 2001 From: Dincer Celik Date: Fri, 19 Mar 2021 12:30:40 +0300 Subject: [PATCH] Fix url for get_pip macro Stein only. Change-Id: I1d175b603bbc3adbd371a2d66401ed380378ea9e --- docker/macros.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/macros.j2 b/docker/macros.j2 index c71d1894ab..877fd1d969 100644 --- a/docker/macros.j2 +++ b/docker/macros.j2 @@ -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 %}