address review

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-03-07 10:04:11 +01:00
parent 56a95182c7
commit ebbcb998ce

View file

@ -4,17 +4,19 @@ FROM nextcloud/imaginary:20230301
USER root USER root
RUN set -ex; \ RUN set -ex; \
\ \
echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list \
apt-get update; \ apt-get update; \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
netcat \ 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 \ apt-get install -t bookworm -y --no-install-recommends \
libheif1 \ libheif1 \
libde265-0 \ libde265-0 \
libx265-199 \ libx265-199 \
libvips \ libvips \
; \ ; \
rm /etc/apt/sources.list.d/bookworm.list; \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
USER nobody USER nobody