Skip to content

Commit 7fd7b91

Browse files
chore: tighten dockerignore to reduce build context and speed up container builds
1 parent 295da9b commit 7fd7b91

1 file changed

Lines changed: 28 additions & 6 deletions

File tree

.dockerignore

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
1-
/.husky/*
2-
/.github/*
3-
/website/data/*
1+
# Git and local editor/tooling metadata
2+
.git/
3+
.github/
4+
.vscode/
5+
.husky/
6+
.ruff_cache/
7+
.pipeline-runs/
8+
9+
# Dependency and build artifacts
10+
node_modules/
11+
dist/*
12+
!dist/schemas/
13+
!dist/schemas/**
14+
validation-results/
15+
logs/
16+
17+
# Local temporary sources and generated leftovers
18+
modules_temp/
19+
*.tsbuildinfo
20+
21+
# Documentation not needed for container build
22+
docs/
23+
guides/
24+
*.md
25+
26+
# Website runtime artifacts generated by pipeline
27+
website/data/*
428
!website/data/cache/
529
!website/data/cache/**
6-
/website/images/*
7-
/guides/*
8-
*.md
30+
website/images/*

0 commit comments

Comments
 (0)