fix: update Dockerfile to use npm install instead of npm ci

feat: add additional permissions in settings.local.json and update .gitignore
This commit is contained in:
Giuseppe Raffa
2026-04-14 09:57:42 +02:00
parent c377eb59d9
commit 85bd226d35
3 changed files with 6 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ WORKDIR /app
# Install server dependencies
COPY server/package*.json ./
RUN npm ci --omit=dev && npm cache clean --force
RUN npm install --omit=dev && npm cache clean --force
# Copy server source
COPY server/src ./src