Fix: Use npm install instead of npm ci in Nakama Dockerfile
Some checks failed
Build and Push / build-all (push) Failing after 19s

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
doomtube 2026-01-06 05:17:01 -05:00
parent e32e5aceaf
commit 22e610ea55

View file

@ -11,9 +11,9 @@ FROM node:20-alpine AS builder
WORKDIR /app
# Copy module files
# Copy module files and install dependencies
COPY modules/package*.json ./
RUN npm ci
RUN npm install
# Copy source and build
COPY modules/tsconfig.json ./