From 13b41ad91df75bcd5a0fdf8027402f1901bc6531 Mon Sep 17 00:00:00 2001 From: Brad Hards Date: Wed, 10 Jul 2024 02:40:38 +1000 Subject: [PATCH] libheif: add compression libs (#12165) Required for https://github.com/strukturag/libheif/pull/1208 @farindk --- projects/libheif/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/libheif/Dockerfile b/projects/libheif/Dockerfile index 829bfdd7a..20041208a 100644 --- a/projects/libheif/Dockerfile +++ b/projects/libheif/Dockerfile @@ -22,11 +22,13 @@ RUN apt-get update && apt-get install -y \ automake \ build-essential \ cmake \ + libbrotli-dev \ libtool \ make \ mercurial \ pkg-config \ - yasm + yasm \ + zlib1g-dev RUN git clone \ --depth 1 \