From 6d1b65eb7bbb7d7749bed7cda160ce9dfb398772 Mon Sep 17 00:00:00 2001 From: Silvano Cirujano Cuesta Date: Tue, 6 Apr 2021 07:39:34 +0200 Subject: [PATCH] Add skopeo and umoci to ISAR image Skopeo and Umoci are needed for the new ISAR SDK Container target. A "manual" backport of Skopeo (and only Skopeo) is needed, since the repository "buster-backports" doesn't provide it. Signed-off-by: Silvano Cirujano Cuesta [Jan: add golang-github-containers-{image,common} to buster list] Signed-off-by: Jan Kiszka --- Dockerfile.isar | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile.isar b/Dockerfile.isar index 8ac494f..2a05453 100644 --- a/Dockerfile.isar +++ b/Dockerfile.isar @@ -9,10 +9,13 @@ ARG DEBIAN_FRONTEND=noninteractive ENV LC_ALL=en_US.UTF-8 RUN echo 'deb http://deb.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/buster-backports.list && \ echo "Package: qemu-user-static\nPin: release n=buster-backports\nPin-Priority: 501\n\nPackage: *\nPin: release n=buster-backports\nPin-Priority: -1" > /etc/apt/preferences.d/qemu-user-static && \ + echo 'deb http://deb.debian.org/debian bullseye main' > /etc/apt/sources.list.d/bullseye.list && \ + echo "Package: skopeo golang-github-containers-common golang-github-containers-image\nPin: release n=bullseye\nPin-Priority: 501\n\nPackage: *\nPin: release n=bullseye\nPin-Priority: -1" > /etc/apt/preferences.d/skopeo && \ apt-get update && \ apt-get install -y -f --no-install-recommends \ autoconf automake gdisk libtool bash-completion \ sudo reprepro python3 binfmt-support e2fsprogs \ + umoci skopeo \ multistrap qemu-user-static debootstrap quilt && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*