Fix Dockerfile: use npm install instead of npm ci

This commit is contained in:
2025-10-01 22:16:08 -04:00
parent 1b282c05fe
commit ec053fc538

View File

@@ -6,7 +6,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
# Install dependencies # Install dependencies
RUN npm ci RUN npm install
# Copy application files # Copy application files
COPY . . COPY . .