Switch to npm install to bypass lockfile sync errors

This commit is contained in:
gamvo74 2026-02-25 01:35:35 -05:00
parent f7cb715c62
commit 4d6d464cb9
2 changed files with 2 additions and 2 deletions

View File

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

View File

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