Skip to content

Commit 5cb04e6

Browse files
committed
add docker ignore for neug-release
1 parent 2d0e11e commit 5cb04e6

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

.dockerignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Build artifacts (CMakeCache.txt records absolute host paths and breaks
2+
# in-container builds, so we MUST exclude every local build directory)
3+
build/
4+
**/build/
5+
dist/
6+
**/dist/
7+
wheelhouse/
8+
**/wheelhouse/
9+
**/*.egg-info/
10+
**/__pycache__/
11+
**/*.pyc
12+
**/.pytest_cache/
13+
14+
# Test / coverage outputs
15+
coverage_html/
16+
coverage_html.tar.gz
17+
**/coverage*.info
18+
**/*.gcda
19+
**/*.gcno
20+
21+
# IDE / editor / VCS metadata
22+
.git/
23+
.idea/
24+
.vscode/
25+
.qoder/
26+
.cursor/
27+
.devcontainer/
28+
**/.DS_Store
29+
30+
# Python virtualenvs
31+
.venv/
32+
venv/
33+
env/
34+
35+
# Pre-built wheels we never want to ship in builder context
36+
tools/python_bind/dist/
37+
tools/python_bind/build/
38+
tools/python_bind/neug.egg-info/
39+
tools/python_bind/neug/*.so
40+
41+
# Top-level cmake build outputs (out-of-source builds)
42+
cmake-build-*/
43+
44+
# Logs / scratch files
45+
*.log
46+
serve.log
47+
batch.log
48+
benchmark.log

0 commit comments

Comments
 (0)