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
42 changes: 42 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Only go.mod, go.sum, cmd/, api/, internal/, and pkg/ are needed by the Dockerfile.

# Version control and IDE
.git
.gitignore
.gitmodules
.cursor
.claude
*.swp
*.swo

# Dependencies and tools (Go modules are copied explicitly; no need for full tree)
vendor/

# Submodules and sibling repos (not needed for building the manager binary)
sample-data/
llm-d-infra/
# If building from a parent repo that includes llmd or GAIE, add:
# llmd/
# gateway-api-inference-extension/

# Docs, tests, and deployment manifests (not used in the image)
docs/
test/
deploy/
hack/
charts/
config/

# Build artifacts and local binaries
bin/
dist/
*.exe
*.test
coverage.out
coverage.html

# Misc
*.md
.DS_Store
.env
.env.*
Loading