Skip to content

Commit bfc1efa

Browse files
committed
update for latest
1 parent 2ef89f6 commit bfc1efa

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pyvips-alpine/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ RUN apk add \
1717
fftw-dev \
1818
libpng-dev \
1919
libwebp-dev \
20-
orc-dev \
21-
libgsf-dev
20+
libarchive-dev
2221

2322
# add these if you like for text rendering, PDF rendering, SVG rendering,
2423
# but they will pull in loads of other stuff
@@ -32,14 +31,14 @@ RUN apk add \
3231

3332
WORKDIR /usr/local/src
3433

35-
ARG VIPS_VERSION=8.14.2
34+
ARG VIPS_VERSION=8.15.1
3635
ARG VIPS_URL=https://github.com/libvips/libvips/releases/download
3736

3837
RUN wget ${VIPS_URL}/v${VIPS_VERSION}/vips-${VIPS_VERSION}.tar.xz
3938

4039
RUN tar xf vips-${VIPS_VERSION}.tar.xz \
4140
&& cd vips-${VIPS_VERSION} \
42-
&& meson setup build --buildtype release -Dintrospection=false \
41+
&& meson setup build \
4342
&& cd build \
4443
&& meson compile \
4544
&& meson install

pyvips-alpine/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# Make a pyvips / libvips 8.14 / alpine stack
1+
# Make a pyvips / libvips 8.15 / alpine stack
22

33
# Rebuild the image
44

5-
docker pull alpine:latest
6-
7-
docker build -t pyvips-alpine .
5+
```shell
6+
docker pull alpine:latest
7+
docker build -t pyvips-alpine .
8+
```
89

910
# Run the demo
1011

0 commit comments

Comments
 (0)