From 22e610ea55aaa304ab3df2fd37a572e05afe0ab5 Mon Sep 17 00:00:00 2001 From: doomtube Date: Tue, 6 Jan 2026 05:17:01 -0500 Subject: [PATCH] Fix: Use npm install instead of npm ci in Nakama Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- nakama/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nakama/Dockerfile b/nakama/Dockerfile index 3ce4d8f..4af7aa7 100644 --- a/nakama/Dockerfile +++ b/nakama/Dockerfile @@ -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 ./