From 34239f3e1517316e400f8aafe7e7422ba994ed7a Mon Sep 17 00:00:00 2001 From: Simon L Date: Sat, 15 Apr 2023 16:47:16 +0200 Subject: [PATCH] also install other vips bindings Signed-off-by: Simon L --- Containers/imaginary/Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Containers/imaginary/Dockerfile b/Containers/imaginary/Dockerfile index b5f85658..e2dd6599 100644 --- a/Containers/imaginary/Dockerfile +++ b/Containers/imaginary/Dockerfile @@ -2,6 +2,9 @@ FROM golang:1.20.3-alpine3.17 as go RUN set -ex; \ apk add --no-cache \ vips-dev \ + vips-magick \ + vips-heif \ + vips-jxl build-base; \ go install github.com/h2non/imaginary@b632dae8cc321452c3f85bcae79c580b1ae1ed84 @@ -11,7 +14,10 @@ RUN set -ex; \ tzdata \ ca-certificates \ netcat-openbsd \ - vips-dev + vips \ + vips-magick \ + vips-heif \ + vips-jxl COPY --from=go /go/bin/imaginary /usr/local/bin/imaginary