From 36671b68b0536318d79892acd0c870e82592a93f Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 7 Apr 2024 03:55:38 -1000 Subject: [PATCH] Add libvips install to container --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d7c0ef8d..2410a0fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,6 +30,9 @@ WORKDIR /temp/dist # Alpine (musl) causes errors with Bun :( FROM oven/bun:1.1.2-slim +# Install libvips +RUN apt-get update && apt-get install -y libvips + # Create app directory RUN mkdir -p /app COPY --from=build /temp/dist /app/dist