fix: Change Dockerfile to use npm install instead of npm ci for dependency installation

This commit is contained in:
MayaTheShy
2026-02-16 00:10:24 -05:00
parent fd9caf44e9
commit efa5afd79a

View File

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