From 3a06e3c43c319a26db0306ec752bc21afc4f58a9 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sun, 7 Dec 2025 16:35:09 +0100 Subject: [PATCH] Fix sharp in `bun compile` in 1.3.4 (#1206) --- api/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/Dockerfile b/api/Dockerfile index 522e14e5..fffba753 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -12,6 +12,8 @@ COPY tsconfig.json . ENV NODE_ENV=production RUN bun build \ --compile \ + # needed for sharp + --compile-autoload-package-json \ --minify-whitespace \ --minify-syntax \ --target bun \