From 8b74402c6b301deff42d42ae1d2543da3f73e680 Mon Sep 17 00:00:00 2001 From: Lucid Date: Sat, 6 Dec 2025 00:05:57 -0500 Subject: [PATCH] fix copy --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4795cfb..ed3d345 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,6 @@ FROM node:20-alpine AS builder RUN corepack enable RUN corepack prepare yarn@stable --activate WORKDIR /app -COPY .yarn ./.yarn COPY --from=dependencies /app/node_modules ./ COPY . /app/ RUN yarn build @@ -23,6 +22,6 @@ RUN corepack enable RUN corepack prepare yarn@stable --activate WORKDIR /app COPY --from=builder /app/build /app/build -COPY --from=dependencies /app/.yarn ./.yarn +COPY --from=builder /app/.yarn ./.yarn CMD ["yarn", "start"] # Replace with your start command