We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5fec17 commit b7abb17Copy full SHA for b7abb17
Dockerfile
@@ -2,8 +2,14 @@ FROM oven/bun:1 AS base
2
3
WORKDIR /app
4
5
+# Copy package files and local SDK workspace
6
COPY package.json bun.lock ./
7
+COPY sdk ./sdk
8
9
+# Build SDK first
10
+RUN cd sdk && bun install && bun run build && cd ..
11
+
12
+# Install main app dependencies
13
RUN bun install --frozen-lockfile
14
15
COPY . .
0 commit comments