From 7b9284edb99fb262a810095d0044d32c73bbd644 Mon Sep 17 00:00:00 2001 From: Hampus Date: Mon, 31 Aug 2026 14:06:07 +0200 Subject: [PATCH] fix(build): allow unused patches when deploying the api subset (#2235) --- fluxer_api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluxer_api/Dockerfile b/fluxer_api/Dockerfile index 871cba9fa..177fc2ad5 100644 --- a/fluxer_api/Dockerfile +++ b/fluxer_api/Dockerfile @@ -24,7 +24,7 @@ COPY . . RUN pnpm install --frozen-lockfile RUN pnpm --filter @fluxer/config run --if-present generate RUN pnpm --filter fluxer_api run build -RUN pnpm deploy --legacy --filter=fluxer_api --prod /out +RUN pnpm deploy --legacy --filter=fluxer_api --prod --config.allowUnusedPatches=true /out FROM node:24-bookworm-slim