diff --git a/debs/Debian/arm64/Dockerfile b/debs/Debian/arm64/Dockerfile index 9e0be61006..f2d641ed3c 100644 --- a/debs/Debian/arm64/Dockerfile +++ b/debs/Debian/arm64/Dockerfile @@ -3,8 +3,9 @@ FROM arm64v8/debian:stretch ENV DEBIAN_FRONTEND noninteractive # Installing necessary packages -RUN echo "deb http://deb.debian.org/debian stretch contrib non-free" >> /etc/apt/sources.list && \ - echo "deb-src http://deb.debian.org/debian stretch main contrib non-free" >> /etc/apt/sources.list && \ +RUN echo "deb http://archive.debian.org/debian stretch contrib main non-free" > /etc/apt/sources.list && \ + echo "deb http://archive.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list && \ + echo "deb-src http://archive.debian.org/debian stretch main" >> /etc/apt/sources.list && \ apt-get update && apt-get install -y --allow-change-held-packages apt apt-utils \ curl gcc g++ make sudo expect gnupg \ perl-base perl wget libc-bin libc6 libc6-dev \ diff --git a/debs/Debian/armhf/Dockerfile b/debs/Debian/armhf/Dockerfile index c526d17cb8..ae6aa76d71 100644 --- a/debs/Debian/armhf/Dockerfile +++ b/debs/Debian/armhf/Dockerfile @@ -3,8 +3,9 @@ FROM arm32v7/debian:stretch ENV DEBIAN_FRONTEND noninteractive # Installing necessary packages -RUN echo "deb http://deb.debian.org/debian stretch contrib non-free" >> /etc/apt/sources.list && \ - echo "deb-src http://deb.debian.org/debian stretch main contrib non-free" >> /etc/apt/sources.list && \ +RUN echo "deb http://archive.debian.org/debian stretch contrib main non-free" > /etc/apt/sources.list && \ + echo "deb http://archive.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list && \ + echo "deb-src http://archive.debian.org/debian stretch main" >> /etc/apt/sources.list && \ apt-get update && apt-get install -y --allow-change-held-packages apt-utils \ curl gcc make wget sudo expect gnupg perl-base \ perl libc-bin libc6 libc6-dev \ diff --git a/debs/Debian/ppc64le/Dockerfile b/debs/Debian/ppc64le/Dockerfile index f0fe23d3f9..2afa693182 100644 --- a/debs/Debian/ppc64le/Dockerfile +++ b/debs/Debian/ppc64le/Dockerfile @@ -2,11 +2,10 @@ FROM ppc64le/debian:stretch ENV DEBIAN_FRONTEND noninteractive -RUN apt-get -v - # Installing necessary packages -RUN echo "deb http://deb.debian.org/debian stretch main contrib non-free" >> /etc/apt/sources.list && \ - echo "deb-src http://deb.debian.org/debian stretch main contrib non-free" >> /etc/apt/sources.list && \ +RUN echo "deb http://archive.debian.org/debian stretch contrib main non-free" > /etc/apt/sources.list && \ + echo "deb http://archive.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list && \ + echo "deb-src http://archive.debian.org/debian stretch main" >> /etc/apt/sources.list && \ apt-get update && apt-get install -y --allow-change-held-packages apt-utils && \ apt-get install -y --allow-change-held-packages \ curl gcc make sudo expect gnupg perl-base perl wget \