From 207d236bae183eebbd00e1d845eec1ece69a75bf Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Fri, 9 Jun 2023 10:55:52 +0200 Subject: [PATCH] Dockerfile: Refresh kas-isar package list Sync again with the list from latest Isar user manual. All of the "new" packages (bzip2, python3-distutils, unzip, zstd) were already implicitly installed, but this makes sure it they will not accidentally vanish on the next base image change. Signed-off-by: Jan Kiszka --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4c5c14a..a50b08f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -72,9 +72,10 @@ FROM kas-base as kas-isar ENV LC_ALL=en_US.UTF-8 RUN apt-get update && \ apt-get install -y -f --no-install-recommends \ - binfmt-support debootstrap dosfstools dpkg-dev gettext-base git \ - mtools parted python3 quilt qemu-user-static reprepro sudo \ - git-buildpackage pristine-tar sbuild schroot \ + binfmt-support bzip2 debootstrap dosfstools \ + dpkg-dev gettext-base git mtools parted python3 python3-distutils \ + quilt qemu-user-static reprepro sudo unzip git-buildpackage \ + pristine-tar sbuild schroot zstd \ umoci skopeo && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \