forked from microsoft/Sico
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
41 lines (36 loc) · 708 Bytes
/
.dockerignore
File metadata and controls
41 lines (36 loc) · 708 Bytes
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
# Applies to Docker builds whose context is the repository root
# (currently: core). Backend and frontend images use their own
# per-package .dockerignore files because they build from `backend/`
# and `frontend/` respectively.
# VCS / docs
.git
.gitignore
*.md
# Editor / OS noise
.idea/
.vscode/
*.swp
*.swo
# Python (core) build / cache artifacts
__pycache__/
*.py[cod]
*.pyo
.venv/
*.egg-info/
dist/
build/
.mypy_cache/
.ruff_cache/
.pytest_cache/
# Helm charts are deployed separately and not needed inside the images
backend/deployments/helm/
core/deployments/helm/
frontend/deployments/helm/
# Folders unrelated to the core image
backend/
frontend/
docs/
examples/
sandbox/
deploy/kind/
.github/