diff --git a/Dockerfile b/Dockerfile
index 07b5add6b5eafa150720dfa713fff1b3d62f70c1..c5d006838efcc2caecd6d881db2a21f5e22700ae 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