From ebbcb998cefce1b9586f459f67e8baab9797607e Mon Sep 17 00:00:00 2001 From: Simon L Date: Tue, 7 Mar 2023 10:04:11 +0100 Subject: [PATCH] address review Signed-off-by: Simon L --- Containers/imaginary/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Containers/imaginary/Dockerfile b/Containers/imaginary/Dockerfile index ecebefbf..b27ec131 100644 --- a/Containers/imaginary/Dockerfile +++ b/Containers/imaginary/Dockerfile @@ -4,17 +4,19 @@ FROM nextcloud/imaginary:20230301 USER root RUN set -ex; \ \ - echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list \ apt-get update; \ apt-get install -y --no-install-recommends \ netcat \ ; \ + echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list \ + apt-get update; \ apt-get install -t bookworm -y --no-install-recommends \ libheif1 \ libde265-0 \ libx265-199 \ libvips \ ; \ + rm /etc/apt/sources.list.d/bookworm.list; \ rm -rf /var/lib/apt/lists/* USER nobody