From 72eff86c272bdd45c37c9e639c9f4a317f747c35 Mon Sep 17 00:00:00 2001 From: Michael Robinson Date: Mon, 20 Nov 2023 19:57:59 +1300 Subject: [PATCH] Add imagemagick and vips-tools --- build-image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-image/Dockerfile b/build-image/Dockerfile index f4f9fdf..4fc1266 100644 --- a/build-image/Dockerfile +++ b/build-image/Dockerfile @@ -21,7 +21,7 @@ RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesourc RUN apt-get update && apt-get install nodejs -y && apt-get clean # Install image compressor/manager -RUN apt-get install -y libvips && apt-get clean +RUN apt-get install -y libvips imagemagick vips-tools && apt-get clean # Install OpenJDK-11 RUN apt-get install -y default-jre && \