File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1717 && rm -rf /var/lib/apt/lists/*
1818
1919COPY package.json bun.lock turbo.json ./
20- RUN mkdir -p apps packages/db
20+ RUN mkdir -p apps packages/db packages/testing
2121COPY apps/sim/package.json ./apps/sim/package.json
2222COPY packages/db/package.json ./packages/db/package.json
23+ COPY packages/testing/package.json ./packages/testing/package.json
2324
2425# Install turbo globally, then dependencies, then rebuild isolated-vm for Node.js
2526RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \
@@ -44,6 +45,7 @@ COPY --from=deps /app/node_modules ./node_modules
4445COPY package.json bun.lock turbo.json ./
4546COPY apps/sim/package.json ./apps/sim/package.json
4647COPY packages/db/package.json ./packages/db/package.json
48+ COPY packages/testing/package.json ./packages/testing/package.json
4749
4850# Copy workspace configuration files (needed for turbo)
4951COPY apps/sim/next.config.ts ./apps/sim/next.config.ts
Original file line number Diff line number Diff line change @@ -11,9 +11,10 @@ RUN apk add --no-cache libc6-compat
1111WORKDIR /app
1212
1313COPY package.json bun.lock turbo.json ./
14- RUN mkdir -p apps packages/db
14+ RUN mkdir -p apps packages/db packages/testing
1515COPY apps/sim/package.json ./apps/sim/package.json
1616COPY packages/db/package.json ./packages/db/package.json
17+ COPY packages/testing/package.json ./packages/testing/package.json
1718
1819# Install dependencies with cache mount for faster builds
1920RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \
@@ -32,6 +33,7 @@ COPY --from=deps /app/node_modules ./node_modules
3233COPY package.json bun.lock turbo.json ./
3334COPY apps/sim/package.json ./apps/sim/package.json
3435COPY packages/db/package.json ./packages/db/package.json
36+ COPY packages/testing/package.json ./packages/testing/package.json
3537
3638# Copy source code (changes most frequently - placed last to maximize cache hits)
3739COPY apps/sim ./apps/sim
You can’t perform that action at this time.
0 commit comments