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
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends git python3 mak
# Copy package files first for better layer caching
COPY package.json bun.lock bunfig.toml ./

# Copy dependency patches referenced by package.json patchedDependencies
# (bun install fails without them).
COPY patches/ patches/

# Copy postinstall script (needed by bun install)
COPY scripts/postinstall.sh scripts/

Expand Down
Loading