Compare commits

..

5 Commits

Author SHA1 Message Date
Michael Stanclift
bcad8c59c1 Revert "Move libvips build to dedicated layer"
This reverts commit b92ceeb91c.
2024-06-07 13:41:01 -05:00
Michael Stanclift
e7db00bd9b Revert "comments"
This reverts commit 0ad12b8248.
2024-06-07 13:40:57 -05:00
Michael Stanclift
0ad12b8248 comments 2024-06-07 13:00:47 -05:00
Michael Stanclift
b92ceeb91c Move libvips build to dedicated layer 2024-06-07 13:00:03 -05:00
Michael Stanclift
b678577ad5 Enable renovate checking of libvips version 2024-06-07 12:29:41 -05:00

View File

@ -160,9 +160,8 @@ RUN \
;
# libvips version to compile, change with [--build-arg VIPS_VERSION="8.15.2"]
# renovate: datasource=github-releases depName=libvips packageName=libvips/libvips
ARG VIPS_VERSION=8.15.2
# libvips sha256 hash of downloaded archive, change with [--build-arg VIPS_SHA256="a1b2c3..."]
ARG VIPS_SHA256=a2ab15946776ca7721d11cae3215f20f1f097b370ff580cd44fc0f19387aee84
# libvips download URL, change with [--build-arg VIPS_URL="https://github.com/libvips/libvips/releases/download"]
ARG VIPS_URL=https://github.com/libvips/libvips/releases/download
@ -170,9 +169,6 @@ WORKDIR /usr/local/src
RUN \
curl -sSL -o vips-${VIPS_VERSION}.tar.xz ${VIPS_URL}/v${VIPS_VERSION}/vips-${VIPS_VERSION}.tar.xz; \
echo "$VIPS_SHA256 vips-${VIPS_VERSION}.tar.xz" | sha256sum --check || exit 1;
RUN \
tar xf vips-${VIPS_VERSION}.tar.xz; \
cd vips-${VIPS_VERSION}; \
meson setup build --libdir=lib -Ddeprecated=false -Dintrospection=disabled -Dmodules=disabled -Dexamples=false; \