From 7c0c668933abcda3a4c1d1396ee404055c2a54d2 Mon Sep 17 00:00:00 2001 From: Lucid Date: Fri, 5 Dec 2025 23:07:11 -0500 Subject: [PATCH] update copy command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6a9420..4075f82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ FROM node:20-alpine AS builder RUN corepack enable RUN corepack prepare yarn@stable --activate WORKDIR /app -COPY --from=dependencies /app . +COPY --from=dependencies /app ./ COPY . . RUN yarn build