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
12 changes: 2 additions & 10 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,6 @@
!apps/server/prisma

# Workspace package dependencies.
!packages/hypergraph/package.json
!packages/hypergraph/src
!packages/hypergraph/tsconfig.json
!packages/hypergraph/tsconfig.src.json
!packages/hypergraph/tsconfig.build.json
!packages/hypergraph
Copy link

Copilot AI Aug 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Including the entire package directory may introduce unnecessary files into the Docker image that could increase build size and potentially expose sensitive files. Consider explicitly including only the necessary files like package.json, src/, and tsconfig files as in the original pattern.

Suggested change
!packages/hypergraph
!packages/hypergraph/package.json
!packages/hypergraph/tsconfig.json
!packages/hypergraph/tsup.config.ts
!packages/hypergraph/src

Copilot uses AI. Check for mistakes.


!packages/hypergraph-react/package.json
!packages/hypergraph-react/src
!packages/hypergraph-react/tsconfig.json
!packages/hypergraph-react/tsconfig.src.json
!packages/hypergraph-react/tsconfig.build.json
!packages/hypergraph-react
Copy link

Copilot AI Aug 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Including the entire package directory may introduce unnecessary files into the Docker image that could increase build size and potentially expose sensitive files. Consider explicitly including only the necessary files like package.json, src/, and tsconfig files as in the original pattern.

Suggested change
!packages/hypergraph-react
!packages/hypergraph-react/package.json
!packages/hypergraph-react/tsconfig.json
!packages/hypergraph-react/tsup.config.ts
!packages/hypergraph-react/src

Copilot uses AI. Check for mistakes.

Loading