Skip to content

Commit ad031cd

Browse files
authored
add dockerignore (llm-d#822)
Signed-off-by: Mohammed Abdi <mohammed.munir.abdi@ibm.com>
1 parent a2bd1b0 commit ad031cd

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

.dockerignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Only go.mod, go.sum, cmd/, api/, internal/, and pkg/ are needed by the Dockerfile.
2+
3+
# Version control and IDE
4+
.git
5+
.gitignore
6+
.gitmodules
7+
.cursor
8+
.claude
9+
*.swp
10+
*.swo
11+
12+
# Dependencies and tools (Go modules are copied explicitly; no need for full tree)
13+
vendor/
14+
15+
# Submodules and sibling repos (not needed for building the manager binary)
16+
sample-data/
17+
llm-d-infra/
18+
# If building from a parent repo that includes llmd or GAIE, add:
19+
# llmd/
20+
# gateway-api-inference-extension/
21+
22+
# Docs, tests, and deployment manifests (not used in the image)
23+
docs/
24+
test/
25+
deploy/
26+
hack/
27+
charts/
28+
config/
29+
30+
# Build artifacts and local binaries
31+
bin/
32+
dist/
33+
*.exe
34+
*.test
35+
coverage.out
36+
coverage.html
37+
38+
# Misc
39+
*.md
40+
.DS_Store
41+
.env
42+
.env.*

0 commit comments

Comments
 (0)