diff --git a/Dockerfile b/Dockerfile index a4813af..e60cff4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,8 +15,8 @@ COPY prisma ./prisma/ # Install bun for faster installs RUN npm install -g bun -# Install dependencies -RUN bun install --frozen-lockfile --production=false +# Install dependencies (including devDependencies for build) +RUN bun install --frozen-lockfile # Stage 2: Builder FROM node:20-alpine AS builder