-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.dockerignore
More file actions
43 lines (39 loc) · 1.24 KB
/
.dockerignore
File metadata and controls
43 lines (39 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# ─── Secrets (never bake into an image) ──────────────────────────────────────
.env
.env.*
*.p8
.mcp.json
# ─── Version control / CI ───────────────────────────────────────────────────
.git/
.github/
# ─── Python build artifacts ─────────────────────────────────────────────────
.venv/
venv/
__pycache__/
.pytest_cache/
.coverage
htmlcov/
*.egg-info/
dist/
build/
# ─── Frontend build artifacts (built inside Docker, not from host) ──────────
frontend/node_modules/
frontend/.svelte-kit/
frontend/build/
frontend/playwright-report/
frontend/test-results/
frontend/coverage/
frontend/.lighthouseci/
# ─── Dev-only files ─────────────────────────────────────────────────────────
tests/
scripts/
*.md
LICENSE
Makefile
requirements-dev.txt
snowflake-mcp-config.yaml
.gitignore
.dockerignore
.gcloudignore
.ruff_cache/
.claude/