forked from agentscope-ai/QwenPaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
58 lines (53 loc) · 726 Bytes
/
.dockerignore
File metadata and controls
58 lines (53 loc) · 726 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
# Git and IDE
.git
.gitignore
.idea
.vscode
*.md
!README.md
# Python dev and cache
__pycache__
*.py[cod]
*$py.class
.venv
venv
uv.lock
.pytest_cache
.coverage
htmlcov
.tox
.mypy_cache
.ruff_cache
# Tests (not needed in runtime image)
tests
test.py
*_test.py
pytest.ini
.pre-commit-config.yaml
.flake8
.eslintrc
.stylelintrc
# Frontend: exclude build artifacts; ship pre-built src/console/dist in image
website
console/node_modules
console/dist
console/.vite
node_modules
**/node_modules
**/dist
!src/copaw/console/dist
!src/copaw/console/dist/**
**/.vite
# Example and local config (mount at runtime instead)
example
config.json
jobs.json
sessions_mount_dir
# Misc
.env
.env.*
!.env.example
.DS_Store
*.log
logs
cookbook