diff --git a/Dockerfile b/Dockerfile index 4075f82..b636a28 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/node_modules ./ COPY . . RUN yarn build