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 files
COPY package*.json ./ COPY package*.json ./
# Install dependencies # Install all dependencies (needed for build)
RUN npm ci RUN npm ci --include=dev
# Copy source code # Copy source code
COPY . . COPY . .