Fix Docker build: use npm install --production and add npm start script

This commit is contained in:
Ryderjj89
2025-09-29 19:01:56 -04:00
parent c033410c2e
commit abd022277f
2 changed files with 3 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
RUN npm install --production
# Copy application code
COPY . .