fix copy - last try
Some checks failed
Main / build-and-push-docker-image (20.x) (push) Failing after 6m10s

This commit is contained in:
2025-12-06 00:19:39 -05:00
parent b534b3f38f
commit 327c0ec032

View File

@@ -11,8 +11,8 @@ FROM node:20-alpine AS builder
RUN corepack enable
RUN corepack prepare yarn@stable --activate
WORKDIR /app
COPY --from=dependencies /app/node_modules ./
COPY . /app/
COPY --from=dependencies /app/node_modules ./node_modules
COPY . ./
RUN yarn build
# --- Stage 3: Runner ---