Fix Docker build: include dev dependencies for build step

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Greg 2025-09-01 23:20:10 +02:00
parent 8cba052ff5
commit 9617fceef2

View File

@ -6,8 +6,8 @@ WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Install all dependencies (needed for build)
RUN npm ci --include=dev
# Copy source code
COPY . .