Skip to content

Commit 48ed9cc

Browse files
committed
add text rendering
1 parent ccc6801 commit 48ed9cc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

libvips-ubuntu20.04/Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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

3435
WORKDIR /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
4647
RUN 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
5557
RUN pip3 install pyvips

0 commit comments

Comments
 (0)