fix: Update Dockerfile to use npm install instead of npm ci for production dependencies

This commit is contained in:
MayaTheShy
2026-02-16 00:10:20 -05:00
parent 30647fca50
commit fd9caf44e9

View File

@@ -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 ./