Update Dockerfile to install all dependencies and modify .dockerignore to exclude log files.

This commit is contained in:
2025-08-13 01:22:41 +01:00
parent 936293ba92
commit 99de77c8f4
2 changed files with 4 additions and 2 deletions

View File

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