Fix dockerfile

This commit is contained in:
2026-01-11 17:30:13 +01:00
parent c6f6daa839
commit 8e59b6fb4f

View File

@ -7,7 +7,7 @@ WORKDIR /app
# Install dependencies with bun
FROM base AS deps
COPY package.json bun.lock* ./
RUN bun install --no-save --frozen-lockfile
RUN bun install --frozen-lockfile
# Rebuild the source code only when needed
FROM base AS builder