Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Using https:// for APT repositories everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
vania-pooh committed Mar 29, 2021
1 parent 5b0641b commit c4e235e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions selenium/opera_presto/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/*
Expand Down
2 changes: 1 addition & 1 deletion static/chrome/apt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
4 changes: 2 additions & 2 deletions static/opera/apt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion static/yandex/apt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit c4e235e

Please sign in to comment.