Skip to content

Commit

Permalink
Add libwebp, libheif, also bumped vips to 8.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brandoncc committed Sep 21, 2020
1 parent 6d1895d commit fd24031
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
Binary file modified build/libvips.tar.gz
Binary file not shown.
16 changes: 15 additions & 1 deletion container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ RUN apt-get update && apt-get install -y \
liblcms2-dev \
libxml2-dev \
libfftw3-dev \
libpoppler-glib-dev
libpoppler-glib-dev \
libwebp-dev \
libde265-dev

ARG GIFLIB_VERSION=5.1.4
ARG GIFLIB_URL=http://downloads.sourceforge.net/project/giflib
Expand Down Expand Up @@ -71,6 +73,18 @@ RUN cd /usr/src \
&& make \
&& make install

ARG HEIF_VERSION=1.8.0
ARG HEIF_URL=https://github.com/strukturag/libheif/releases/download

RUN cd /usr/src \
&& wget ${HEIF_URL}/v${HEIF_VERSION}/libheif-${HEIF_VERSION}.tar.gz \
&& tar xf libheif-${HEIF_VERSION}.tar.gz \
&& cd libheif-${HEIF_VERSION} \
&& ./autogen.sh \
&& ./configure --prefix=/usr/src/vips --disable-gtk-doc \
&& make \
&& make install

ARG VIPS_URL=https://github.com/libvips/libvips/releases/download

RUN cd /usr/src \
Expand Down

0 comments on commit fd24031

Please sign in to comment.