fix: disable scripts

This commit is contained in:
2026-04-02 17:44:54 +02:00
parent 58dd540ea9
commit 502811ca9f

View File

@@ -5,7 +5,7 @@ RUN bun add -g @sern/cli
# Install dependencies # Install dependencies
FROM base AS deps FROM base AS deps
COPY package.json bun.lock ./ COPY package.json bun.lock ./
RUN bun install --frozen-lockfile RUN bun install --frozen-lockfile --ignore-scripts
# Build the application # Build the application
FROM base AS build FROM base AS build