Skip to content

Commit

Permalink
Upgraded libheif to 1.8.0 and fixed libwebp build
Browse files Browse the repository at this point in the history
  • Loading branch information
dooman87 committed Jul 21, 2024
1 parent 85706b6 commit 2345df0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.bookworm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN apt-get -y update && \
# Building libwebp
git clone -b v${LIB_WEBP_VERSION} --depth 1 https://chromium.googlesource.com/webm/libwebp && \
cd libwebp && \
mkdir build && cd build && cmake ../ && make && make install && \
mkdir build && cd build && cmake -DBUILD_SHARED_LIBS=ON ../ && make && make install && \
ldconfig /usr/local/lib && \
cd ../../ && rm -rf libwebp && \
# Building libjxl
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.bullseye
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM debian:bullseye-slim
ENV DEBIAN_FRONTEND=noninteractive

ARG IM_VERSION=7.1.1-35
ARG LIB_HEIF_VERSION=1.17.6
ARG LIB_HEIF_VERSION=1.18.0
ARG LIB_AOM_VERSION=3.9.1
ARG LIB_WEBP_VERSION=1.4.0
ARG LIBJXL_VERSION=0.10.3
Expand Down Expand Up @@ -38,7 +38,7 @@ RUN apt-get -y update && \
# Building libwebp
git clone -b v${LIB_WEBP_VERSION} --depth 1 https://chromium.googlesource.com/webm/libwebp && \
cd libwebp && \
mkdir build && cd build && cmake ../ && make && make install && \
mkdir build && cd build && cmake -DBUILD_SHARED_LIBS=ON ../ && make && make install && \
ldconfig /usr/local/lib && \
cd ../../ && rm -rf libwebp && \
# Building libaom
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:noble
ENV DEBIAN_FRONTEND=noninteractive

ARG IM_VERSION=7.1.1-35
ARG LIB_HEIF_VERSION=1.17.6
ARG LIB_HEIF_VERSION=1.18.0
ARG LIB_AOM_VERSION=3.9.1
ARG LIB_WEBP_VERSION=1.4.0
ARG LIBJXL_VERSION=0.10.3
Expand Down Expand Up @@ -38,7 +38,7 @@ RUN apt-get -y update && \
# Building libwebp
git clone -b v${LIB_WEBP_VERSION} --depth 1 https://chromium.googlesource.com/webm/libwebp && \
cd libwebp && \
mkdir build && cd build && cmake ../ && make && make install && \
mkdir build && cd build && cmake -DBUILD_SHARED_LIBS=ON ../ && make && make install && \
ldconfig /usr/local/lib && \
cd ../../ && rm -rf libwebp && \
# Building libaom
Expand Down

0 comments on commit 2345df0

Please sign in to comment.