From d59cbc1f77fd05fdbb686dc3f2ed243060cf2b56 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Sat, 5 Oct 2024 15:08:42 +0100 Subject: use archlinux for latest version of libheif iOS 18 was producing HEIC files that failed to be converted using debian's version of imagemagick. Arch has a more recent version where the problem was already fixed. --- Containerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Containerfile') diff --git a/Containerfile b/Containerfile index 4c4c5a7..9247c67 100644 --- a/Containerfile +++ b/Containerfile @@ -1,5 +1,6 @@ -FROM debian:bookworm-slim -RUN apt update && apt install -y sqlite3 imagemagick exiftool && apt-get clean +FROM archlinux:latest +RUN pacman -Syu --noconfirm sqlite3 imagemagick perl-image-exiftool libheif +ENV PATH="$PATH:/usr/bin/vendor_perl" WORKDIR /app/data COPY belverde-fire /app/belverde-fire ENTRYPOINT ["/app/belverde-fire"] -- cgit