From c03acaef1585a89701245549bcc9e91c1504493f Mon Sep 17 00:00:00 2001
From: Rishi Panthee <rrpanthe@ncsu.edu>
Date: Tue, 27 Jun 2023 00:45:07 -0500
Subject: [PATCH] Don't install vips in dockerfile

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

diff --git a/Dockerfile b/Dockerfile
index 886fe3d..07b5add 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,12 +10,7 @@ RUN apk add \
     fftw-dev \
     git \
     make \
-    python
-
-RUN apk add \
-    --no-cache \
-    --repository https://alpine.global.ssl.fastly.net/alpine/v3.10/community \
-    vips-dev
+    py-pip
 
 # install application dependencies
 COPY package.json yarn.lock ./
@@ -36,7 +31,7 @@ WORKDIR /app
 RUN apk add \
     --no-cache \
     --repository https://alpine.global.ssl.fastly.net/alpine/v3.10/community \
-    fftw vips
+    fftw
 COPY --from=build-stage /app/config config
 COPY --from=build-stage /app/lib lib
 COPY --from=build-stage /app/node_modules node_modules
-- 
GitLab