fix: Update Dockerfile to use npm install instead of npm ci for production dependencies
This commit is contained in:
@@ -7,7 +7,7 @@ WORKDIR /app
|
||||
COPY package*.json ./
|
||||
|
||||
# Install dependencies
|
||||
RUN npm ci --only=production
|
||||
RUN npm install --omit=dev
|
||||
|
||||
# Copy server code
|
||||
COPY server.js ./
|
||||
|
||||
Reference in New Issue
Block a user