.dockerignore 1.1 KB
Newer Older
1
# SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
3
# SPDX-License-Identifier: Apache-2.0

4
5
6
7
**/*.onnx
**/*.plan
**/*.onnx
**/*.plan
8
**/*.etcd
9
**/.cache/*
10
11
**/__pycache__
**/*.pyc
12
**/*onnx*
13
# Engine must be allowed because code contains llm_engine.py
14
15
16
17
**/*tensorrtllm_engines*
**/*tensorrtllm_models*
**/*tensorrtllm_checkpoints*
**/*hf_downloads*
18
19
20
21
22
23
24
25
26
27
28
**/*pytorch_model*
**/*.pth*
**/*.pt
**/*.models/*
**/*.model-store/*
**/*.model.*/*
**/*.cache/*
**/*.libtorch_model_store/*
**/.git
**/.github
**/*backup*/
29
.dockerignore
30
**/target/*
31
**/*safetensors
32
container/Dockerfile*
33
34
35
container/**/*.Dockerfile
container/render.py
container/context.yaml
36
container/compliance/
37
.venv
38
39
.venv-docs

40
41
42
43
# GPU Memory Service build artifacts
lib/gpu_memory_service/build/
lib/gpu_memory_service/*.egg-info/
lib/gpu_memory_service/**/*.so
44

45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
build/
dist/
*.egg

# Rust
target/

# IDE/Editor
.idea/
*.swp
*.swo
.vscode/
.build/

# Tests & Linters
.pytest_cache/
.coverage
htmlcov/
.tox/
.ruff_cache/
.mypy_cache/

# Docs
docs/_build/

# AI
.cursor/
77
.claude/