From 33190afd08af33d06ff9192a3d4107039c723e57 Mon Sep 17 00:00:00 2001 From: Dorian Date: Thu, 12 Feb 2026 12:52:12 +0000 Subject: [PATCH] Fix seeder Dockerfile: remove --ignore-scripts from npm ci The --ignore-scripts flag prevented esbuild (used by tsx) from downloading its platform binary, causing the seed scripts to fail with exit 1 in the Docker container. Co-authored-by: Cursor --- Dockerfile.seed | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.seed b/Dockerfile.seed index 0e0c790..3b736e1 100644 --- a/Dockerfile.seed +++ b/Dockerfile.seed @@ -7,9 +7,9 @@ FROM node:20-alpine WORKDIR /app -# Install dependencies +# Install dependencies (need full install so tsx/esbuild get their binaries) COPY package*.json ./ -RUN npm ci --ignore-scripts +RUN npm ci # Copy only what the seed scripts need COPY scripts/ ./scripts/