fix: Change npm ci to npm install in all Dockerfiles to resolve package resolution issues
Some checks failed
build-and-deploy / filter (push) Successful in 2s
build-and-deploy / build (push) Failing after 52s
build-and-deploy / deploy (push) Has been skipped

This commit is contained in:
2025-07-05 14:49:25 -06:00
parent c95ca5b998
commit 3ed8357e25
4 changed files with 5 additions and 2987 deletions

View File

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