Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 65ccfe7

Browse files
committed
fix: update Dockerfile to install dependencies in packages/ui-kit
1 parent dfcc710 commit 65ccfe7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ FROM node:20-alpine AS builder
33
WORKDIR /app
44
COPY package.json pnpm-lock.yaml ./
55
RUN npm install -g pnpm && pnpm install
6+
COPY packages/ui-kit/package.json ./packages/ui-kit/
7+
WORKDIR /app/packages/ui-kit
8+
RUN pnpm install
9+
WORKDIR /app
610
COPY . .
711
RUN pnpm build
812

0 commit comments

Comments
 (0)