diff --git a/Dockerfile b/Dockerfile index 90e216a..3fabb74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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