Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ COPY . .
RUN pnpm -r build \
&& test -f server/dist/index.js || (echo "ERROR: server build output missing" && exit 1)

# Prune dev dependencies — tsx is no longer needed at runtime
# since all workspace packages export precompiled dist/ output.
RUN pnpm prune --prod --no-optional
# No prod prune — upstream lists runtime deps (drizzle-orm, etc.)
# as devDependencies. Image size is controlled by selective COPY below.

# ── Stage 4: production ───────────────────────────────────────
# Distroless-style minimal image. No shell, no package manager,
Expand Down
Loading