From 967f1b65515297e14d2b4dfbd21c1221499dca99 Mon Sep 17 00:00:00 2001 From: guitaron <42036802+guitaron@users.noreply.github.com> Date: Thu, 31 Aug 2023 10:49:24 +0200 Subject: [PATCH] Update Dockerfile change sources to debian archive --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8148f5d..4e5ad51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ FROM hypriot/image-builder:latest -RUN apt-get update && \ +RUN echo "deb http://archive.debian.org/debian/ stretch main" > /etc/apt/sources.list && \ + echo "deb-src http://archive.debian.org/debian/ stretch main" >> /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-security stretch/updates main" >> /etc/apt/sources.list && \ + apt-get -o Acquire::Check-Valid-Until=false update && \apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y \ binfmt-support \ qemu \