From c4e235edcb80562fe9f651d54aa22430a224dc48 Mon Sep 17 00:00:00 2001 From: Ivan Krutov Date: Mon, 29 Mar 2021 11:38:28 +0300 Subject: [PATCH] Using https:// for APT repositories everywhere --- selenium/opera_presto/Dockerfile | 4 ++-- static/chrome/apt/Dockerfile | 2 +- static/opera/apt/Dockerfile | 4 ++-- static/yandex/apt/Dockerfile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/selenium/opera_presto/Dockerfile b/selenium/opera_presto/Dockerfile index 6bdbb1429..24a89ef56 100644 --- a/selenium/opera_presto/Dockerfile +++ b/selenium/opera_presto/Dockerfile @@ -1,8 +1,8 @@ FROM browsers/base:7.2 RUN \ - curl -s http://deb.opera.com/archive.key | apt-key add - && \ - echo 'deb http://deb.opera.com/opera/ stable non-free' >> /etc/apt/sources.list.d/opera.list && \ + curl -s https://deb.opera.com/archive.key | apt-key add - && \ + echo 'deb https://deb.opera.com/opera/ stable non-free' >> /etc/apt/sources.list.d/opera.list && \ apt-get update && \ apt-get -y install opera=12.16.1860 openjdk-8-jre-headless && \ rm -Rf /tmp/* && rm -Rf /var/lib/apt/lists/* diff --git a/static/chrome/apt/Dockerfile b/static/chrome/apt/Dockerfile index 217975627..e16a747a0 100644 --- a/static/chrome/apt/Dockerfile +++ b/static/chrome/apt/Dockerfile @@ -8,7 +8,7 @@ LABEL browser=$PACKAGE:$VERSION RUN \ curl -s https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \ - echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' > /etc/apt/sources.list.d/google.list && \ + echo 'deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main' > /etc/apt/sources.list.d/google.list && \ apt-get update && \ apt-get -y --no-install-recommends install iproute2 $PACKAGE=$VERSION && \ chown root:root /opt/google/$INSTALL_DIR/chrome-sandbox && \ diff --git a/static/opera/apt/Dockerfile b/static/opera/apt/Dockerfile index 8c8a6db2e..e67533460 100644 --- a/static/opera/apt/Dockerfile +++ b/static/opera/apt/Dockerfile @@ -6,8 +6,8 @@ ARG PACKAGE=opera-stable LABEL browser=$PACKAGE:$VERSION RUN \ - curl -s http://deb.opera.com/archive.key | apt-key add - && \ - echo 'deb http://deb.opera.com/opera-stable/ stable non-free' > /etc/apt/sources.list.d/opera-blink.list && \ + curl -s https://deb.opera.com/archive.key | apt-key add - && \ + echo 'deb https://deb.opera.com/opera-stable/ stable non-free' > /etc/apt/sources.list.d/opera-blink.list && \ apt-get update && \ apt-get -y --no-install-recommends install $PACKAGE=$VERSION && \ ( [ "$PACKAGE" != "opera-stable" ] && ln /usr/bin/$PACKAGE /usr/bin/opera ) || true && \ diff --git a/static/yandex/apt/Dockerfile b/static/yandex/apt/Dockerfile index bd9437ab9..cf5895c07 100644 --- a/static/yandex/apt/Dockerfile +++ b/static/yandex/apt/Dockerfile @@ -6,7 +6,7 @@ LABEL browser=yandex-browser-beta:$VERSION RUN \ curl -s https://repo.yandex.ru/yandex-browser/YANDEX-BROWSER-KEY.GPG | apt-key add - && \ - echo 'deb [arch=amd64] http://repo.yandex.ru/yandex-browser/deb beta main' > /etc/apt/sources.list.d/yandex-browser.list && \ + echo 'deb [arch=amd64] https://repo.yandex.ru/yandex-browser/deb beta main' > /etc/apt/sources.list.d/yandex-browser.list && \ apt-get update && \ apt-get -y --no-install-recommends install yandex-browser-beta=$VERSION && \ yandex-browser-beta --version && \