From 5b85853f8f30938c3125404af03a62b4564e96e2 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Tue, 16 Jul 2024 17:04:39 +0200 Subject: [PATCH] [docker] Use bundled libvips --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 04a0c3b9b..d612c0851 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM alpine:3.20 as build WORKDIR /iceshrimp # Install compilation dependencies -RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 py3-setuptools nodejs-current npm vips +RUN apk add --no-cache --no-progress git alpine-sdk python3 py3-setuptools nodejs-current npm # Copy in all files for the build COPY . ./ @@ -35,7 +35,7 @@ FROM alpine:3.20 WORKDIR /iceshrimp # Install runtime dependencies -RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current libheif-dev +RUN apk add --no-cache --no-progress tini ffmpeg zip unzip nodejs-current libheif-dev # Copy built files COPY --from=build /iceshrimp /iceshrimp