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

@@ -1,5 +1,5 @@
# Admin Dockerfile - Vue 3 Admin Dashboard
FROM node:18-alpine
FROM node:20-alpine
# Set working directory
WORKDIR /app
@@ -8,7 +8,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci
RUN npm install
# Copy source code
COPY . .

View File

@@ -1,5 +1,5 @@
# Client Dockerfile - Vue 3 Client UI
FROM node:18-alpine
FROM node:20-alpine
# Set working directory
WORKDIR /app
@@ -8,7 +8,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm ci
RUN npm install
# Copy source code
COPY . .

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

2982
server/package-lock.json generated

File diff suppressed because it is too large Load Diff