@@ -10,6 +10,13 @@ WORKDIR /build
ENTRYPOINT ["linux32"]
+# replace repos in archive as release is EOL
+RUN cat <<"END" > /etc/apt/sources.list
+deb http://archive.debian.org/debian/ jessie main contrib non-free
+deb http://archive.debian.org/debian/ jessie-backports main contrib non-free
+deb http://archive.debian.org/debian-security/ jessie/updates main contrib non-free
+END
+
# build depends
RUN apt-get update && \
apt-get --quiet --yes install \
@@ -8,6 +8,13 @@ ENV USER root
RUN mkdir /build
WORKDIR /build
+# replace repos in archive as release is EOL
+RUN cat <<"END" > /etc/apt/sources.list
+deb http://archive.debian.org/debian/ jessie main contrib non-free
+deb http://archive.debian.org/debian/ jessie-backports main contrib non-free
+deb http://archive.debian.org/debian-security/ jessie/updates main contrib non-free
+END
+
# build depends
RUN apt-get update && \
apt-get --quiet --yes install \
@@ -10,6 +10,13 @@ WORKDIR /build
ENTRYPOINT ["linux32"]
+# replace repos in archive as release is EOL
+RUN cat <<"END" > /etc/apt/sources.list
+deb http://archive.debian.org/debian/ stretch main contrib non-free
+deb http://archive.debian.org/debian/ stretch-backports main contrib non-free
+deb http://archive.debian.org/debian-security/ stretch/updates main contrib non-free
+END
+
# build depends
RUN apt-get update && \
apt-get --quiet --yes install \
@@ -8,6 +8,13 @@ ENV USER root
RUN mkdir /build
WORKDIR /build
+# replace repos in archive as release is EOL
+RUN cat <<"END" > /etc/apt/sources.list
+deb http://archive.debian.org/debian/ stretch main contrib non-free
+deb http://archive.debian.org/debian/ stretch-backports main contrib non-free
+deb http://archive.debian.org/debian-security/ stretch/updates main contrib non-free
+END
+
# build depends
RUN apt-get update && \
apt-get --quiet --yes install \