fix: set workdir

This commit is contained in:
Henry
2025-06-16 22:19:28 +01:00
parent 8d5bd61474
commit b90defa872

View File

@@ -53,10 +53,11 @@ RUN --mount=type=cache,id=pnpm,target=~/.pnpm-store pnpm install --frozen-lockfi
# Copy source code of isolated subworkspace
COPY --from=pruner /app/out/full/ .
WORKDIR /app/apps/web
RUN pnpm build --filter=${PROJECT}
# Copy static files to standalone directory
COPY apps/web/public .next/standalone/
COPY public .next/standalone/
COPY .next/static .next/standalone/.next/
# 4. Final image - runner stage to run the application