From 34e9a0881b8c5be0dd2c518c1dd23f36df35e294 Mon Sep 17 00:00:00 2001
From: feruzm <fmiboy@gmail.com>
Date: Thu, 25 Jan 2024 12:06:50 +0530
Subject: [PATCH] add back vips, fast image processing

---
 Dockerfile | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 07b5add..c5d0068 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,7 +12,12 @@ RUN apk add \
     make \
     py-pip
 
-# install application dependencies
+RUN apk add \
+    --no-cache \
+    --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
+    vips-dev
+
+    # install application dependencies
 COPY package.json yarn.lock ./
 RUN JOBS=max yarn install --non-interactive --frozen-lockfile
 
@@ -31,7 +36,7 @@ WORKDIR /app
 RUN apk add \
     --no-cache \
     --repository https://alpine.global.ssl.fastly.net/alpine/v3.10/community \
-    fftw
+    fftw vips
 COPY --from=build-stage /app/config config
 COPY --from=build-stage /app/lib lib
 COPY --from=build-stage /app/node_modules node_modules
-- 
GitLab