Bump to vips v8.10.6 and matching govips
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Andreas Neue 2021-05-21 00:39:13 +02:00
parent 1d7a228d7f
commit 8d722fb45e
4 changed files with 63 additions and 6 deletions

View file

@ -4,11 +4,11 @@ RUN apt -y update && \
apt -y install libglib2.0-dev libexpat1-dev libjpeg-dev libpng-dev libgif-dev
WORKDIR /go/src/image-transformer
COPY . .
RUN wget https://github.com/libvips/libvips/releases/download/v8.7.3/vips-8.7.3.tar.gz && \
tar xvzf vips-8.7.3.tar.gz && \
cd vips-8.7.3 && \
RUN wget https://github.com/libvips/libvips/releases/download/v8.10.6/vips-8.10.6.tar.gz && \
tar xvzf vips-8.10.6.tar.gz && \
cd vips-8.10.6 && \
./configure && \
make && \
make install && \
ldconfig
RUN go get -v -u github.com/davidbyttow/govips/pkg/vips && go install -v ./...
RUN go get -v -u github.com/davidbyttow/govips/v2/vips && go install -v ./...