diff --git a/server/Dockerfile b/server/Dockerfile index 8c8574a..ff56d73 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,5 +1,5 @@ # Server Dockerfile - Colyseus Server -FROM node:18-alpine +FROM node:20-alpine # Set working directory WORKDIR /app @@ -8,7 +8,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN npm ci --only=production +RUN npm ci --omit=dev # Copy source code COPY . .