File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 22/node_modules
33/.git
44/.vscode
5- /.github
5+ /.github
6+ /website
7+ /test
8+ /docs
9+ /dev
Original file line number Diff line number Diff line change @@ -7,8 +7,15 @@ WORKDIR /app
77# Copy package.json and package-lock.json
88COPY package*.json ./
99
10- # Install dependencies
11- RUN npm install
10+ # Copy workspace package.json files for proper monorepo setup
11+ COPY packages/utils/package.json ./packages/utils/
12+ COPY packages/yasgui/package.json ./packages/yasgui/
13+ COPY packages/yasqe/package.json ./packages/yasqe/
14+ COPY packages/yasr/package.json ./packages/yasr/
15+
16+ # Install dependencies (skip puppeteer download to avoid network errors)
17+ ENV PUPPETEER_SKIP_DOWNLOAD=1
18+ RUN npm ci
1219
1320# Copy the rest of the application code
1421COPY . .
You can’t perform that action at this time.
0 commit comments