Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions wavefront/client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,12 @@ FROM node:22-alpine
WORKDIR /app

RUN corepack enable && corepack prepare pnpm@${PNPM_VERSION}
RUN chown node:node /app

COPY --from=build /app/dist ./dist
COPY --from=build /app/server.cjs ./
COPY --from=build --chown=node:node /app/dist ./dist
COPY --from=build --chown=node:node /app/server.cjs ./

USER node
RUN pnpm install express@4.21.2 compression@^1.8.0

EXPOSE 3000
Expand Down
Loading