From 327c0ec0328471c74c8b49282d2e8d8d5a5468a9 Mon Sep 17 00:00:00 2001 From: Lucid Date: Sat, 6 Dec 2025 00:19:39 -0500 Subject: [PATCH] fix copy - last try --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 70b678f..1e7f474 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 ---