From dbde2a75fc22713d0b522ee501c7af8080b2419a Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Wed, 11 Sep 2019 12:29:07 +0200 Subject: [PATCH] Revert "Docker: move on to buster" This reverts commit 97942197bc8b6730f2cd1914684c77ade77eea6c. This is only temporarily in order to release another 1.x version that is based on stretch. Older Yocto versions, maybe up to 2.4 or 2.5, require stretch due to incompatibilities with host tools such as git. After that release, this commit will be restored, and we will roll out a 2.x series that shall use buster in its images. Signed-off-by: Jan Kiszka --- Dockerfile | 2 +- Dockerfile.isar | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8724a60..32e0f9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # This image builds Yocto jobs using the kas tool -FROM debian:buster-slim +FROM debian:stretch-slim ENV DEBIAN_FRONTEND=noninteractive diff --git a/Dockerfile.isar b/Dockerfile.isar index 6b325f3..5b490dc 100644 --- a/Dockerfile.isar +++ b/Dockerfile.isar @@ -3,7 +3,9 @@ FROM kasproject/kas:latest ENV LC_ALL=en_US.UTF-8 -RUN apt-get update && \ +RUN echo 'deb http://deb.debian.org/debian buster main' > /etc/apt/sources.list.d/buster.list && \ + echo "Package: qemu-user-static binfmt-support\nPin: release n=buster\nPin-Priority: 501\n\nPackage: *\nPin: release n=buster\nPin-Priority: -1" > /etc/apt/preferences.d/qemu-user-static && \ + apt-get update && \ apt-get install -y -f --no-install-recommends \ autoconf automake gdisk libtool bash-completion \ sudo grub2 grub-efi-amd64-bin grub-efi-ia32-bin \