-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy path.dockerignore
More file actions
49 lines (39 loc) · 864 Bytes
/
Copy path.dockerignore
File metadata and controls
49 lines (39 loc) · 864 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
# NOTE: scripts/sandbox.py uses a limited parser that only extracts
# single-segment directory patterns (name/ or **/name/) from this file.
# Root-relative patterns (ci/) apply only at the repository root; **/name/
# applies at any depth. Negation (!), globs (*.ext), and multi-segment paths
# are ignored.
bin/
ci/
tests/
# IDE
.idea/
# git
# .git/ is intentionally NOT ignored: the Dockerfile needs it to resolve the
# code-server git submodule (COPY .git ...). Ensure CI uses a shallow clone.
.gitignore
.gitkeep
# Python cache
**/.mypy_cache/
**/.pytest_cache/
**/__pycache__/
**/*.pyc
# Virtual environment
env/
venv/
.venv/
*.egg-info/
# Dockerfiles
**/Dockerfile*
!jupyter/pytorch[+]llmcompressor/ubi9-python-3.12/Dockerfile.cuda
# Logs
*.log
# OS-specific files
**/.DS_Store
Thumbs.db
# Node
**/node_modules/
# Documentation
*.md
docs/
examples/