Fix Dockerfile: Use npm install instead of npm ci (package-lock.json missing)

This commit is contained in:
2026-01-14 16:28:18 +01:00
parent 55c8fee3b8
commit fb7dd23027
2 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm ci
RUN npm install
# Copy source and build
COPY . .