Fix: Use npm install instead of npm ci in Nakama Dockerfile
Some checks failed
Build and Push / build-all (push) Failing after 19s
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:
parent
e32e5aceaf
commit
22e610ea55
1 changed files with 2 additions and 2 deletions
|
|
@ -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 ./
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue