From 0f27a93901454486dd10696b06e9082fa4aefa82 Mon Sep 17 00:00:00 2001 From: Davlet Panech Date: Mon, 1 Nov 2021 21:24:17 -0400 Subject: [PATCH] stx-aptly: don't use git:// protocol Git no longer supports anonymous use of the git:// protocol, use https:// instead. Story: 2008846 Task: 43829 Signed-off-by: Davlet Panech Change-Id: Ie844fb2122429eae8105fedfe30b04a18c817f0f --- stx/dockerfiles/stx-builder.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stx/dockerfiles/stx-builder.Dockerfile b/stx/dockerfiles/stx-builder.Dockerfile index 3c856d38e..93dbaba74 100644 --- a/stx/dockerfiles/stx-builder.Dockerfile +++ b/stx/dockerfiles/stx-builder.Dockerfile @@ -57,7 +57,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ pulp_deb_client \ pulp_file_client \ progressbar \ - git+git://github.com/masselstine/aptly-api-client.git && \ + git+https://github.com/masselstine/aptly-api-client.git && \ sed -i '/^proxy_dns*/d' /etc/proxychains.conf && \ sed -i 's/^socks4.*/socks5 127.0.0.1 8080/g' /etc/proxychains.conf && \ ln -sf /usr/local/bin/stx/stx-localrc /root/localrc && \