We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34024f3 commit 7b68a7eCopy full SHA for 7b68a7e
1 file changed
apps/landing/Dockerfile
@@ -16,14 +16,14 @@ FROM oven/bun:1.3.9 AS builder
16
WORKDIR /app
17
18
COPY --from=deps /app/node_modules ./node_modules
19
+COPY --from=deps /app/apps/landing/node_modules ./apps/landing/node_modules
20
COPY apps/landing ./apps/landing
-COPY package.json ./
21
+COPY package.json tsconfig.base.json ./
22
23
ENV NODE_ENV=production
24
ENV NEXT_TELEMETRY_DISABLED=1
25
-ENV PATH="/app/node_modules/.bin:$PATH"
26
-RUN cd apps/landing && next build
+RUN cd apps/landing && ./node_modules/.bin/next build
27
28
FROM oven/bun:1.3.9 AS runner
29
0 commit comments