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