-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy path.dockerignore
More file actions
63 lines (57 loc) · 1020 Bytes
/
.dockerignore
File metadata and controls
63 lines (57 loc) · 1020 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# .dockerignore for the jaseci repo root. Keeps the docker build context
# bounded - without this, `.git` (~860MB) + caches push past 2GB and the
# build times out before any layer runs.
# Git + CI + editor + OS metadata
.git
.gitignore
.gitattributes
.github
.vscode
.idea
.DS_Store
*.swp
*.swo
*~
# Python build / cache artifacts
**/__pycache__
**/*.pyc
**/*.pyo
**/*.egg-info
**/.pytest_cache
**/.mypy_cache
**/.ruff_cache
**/.coverage
**/htmlcov
**/.tox
**/.venv
**/venv
# Python build outputs - anchored so `**/dist` doesn't drop `.jac/client/dist`.
/dist
/build
jac/dist
jac/build
jac-scale/dist
jac-scale/build
*.tar.gz
*.whl
# Jac runtime artifacts. Specific subdirs - blanket `**/.jac` would
# silently drop the FE bundle at `.jac/client/dist`.
**/.jac/cache
**/.jac/data
**/.jac/logs
**/.jac/run
**/.jac/__pycache__
**/__jac_gen__
# Frontend
**/node_modules
**/.vite
**/.next
**/.turbo
# Working docs / secrets / test artifacts
.local-docs
.env
.env.*
.envrc
*.local
**/test-results
**/playwright-report