check folder
Some checks failed
Main / build-and-push-docker-image (20.x) (push) Failing after 5m6s

This commit is contained in:
2025-12-06 00:11:35 -05:00
parent 8b74402c6b
commit cc090d6414

View File

@@ -5,7 +5,6 @@ RUN corepack prepare yarn@stable --activate
WORKDIR /app
COPY package.json yarn.lock .yarnrc.yml ./
RUN yarn install
RUN ls -lR /app
# --- Stage 2: Builder ---
FROM node:20-alpine AS builder
@@ -13,6 +12,7 @@ RUN corepack enable
RUN corepack prepare yarn@stable --activate
WORKDIR /app
COPY --from=dependencies /app/node_modules ./
RUN ls -lR /app/node_modules
COPY . /app/
RUN yarn build