fix?!?!?!
Some checks failed
Main / build-and-push-docker-image (20.x) (push) Failing after 5m7s

This commit is contained in:
2025-12-05 18:49:00 -05:00
parent ad029523e7
commit 7f33cc3708

View File

@@ -16,7 +16,7 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* .npmrc* ./
COPY package*.json ./
RUN \
if [ -f yarn.lock ]; then yarn install --immutable; \
elif [ -f package-lock.json ]; then npm ci; \
@@ -28,7 +28,7 @@ RUN \
# Rebuild the source code only when needed
FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
# COPY --from=deps /app/node_modules ./node_modules
COPY . .
# Next.js collects completely anonymous telemetry data about general usage.