File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ RUN apt-get install -y \
2929 libexif-dev \
3030 liblcms2-dev \
3131 libheif-dev \
32+ libpango1.0-dev \
3233 liborc-dev
3334
3435WORKDIR /usr/local/src
@@ -41,15 +42,16 @@ RUN mkdir libvips-${VIPS_BRANCH} \
4142 && cd libvips-${VIPS_BRANCH} \
4243 && wget ${VIPS_URL}/${VIPS_BRANCH} -O - | tar xfz - --strip-components 1
4344
44- # "--libdir lib" makes it put the library in /usr/local/lib
4545# we don't need GOI
46+ # ldconfig forces a rebuild of the library cache
4647RUN cd libvips-${VIPS_BRANCH} \
4748 && rm -rf build \
48- && meson build --libdir lib - Dintrospection=disabled \
49+ && meson build -Dintrospection=disabled \
4950 && cd build \
5051 && ninja \
5152 && ninja test \
52- && ninja install
53+ && ninja install \
54+ && ldconfig
5355
5456# pyvips .. handy for testing
5557RUN pip3 install pyvips
You can’t perform that action at this time.
0 commit comments