summaryrefslogtreecommitdiff
path: root/.dockerignore
blob: f04140307505f0fd3fa0937e021ba25fe573b245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Ignore any directory named build at any level
build/
**/build/

# Ignore any file or directory with 'build' in its name
*build*
**/*build*

# Ignore common build artifacts
*.o
*.obj
*.exe
*.out
*.a
*.so
*.dll
*.pyc
*.class

# Optionally, ignore CMake and Make build folders
CMakeFiles/
cmake-build-*/
Makefile
CMakeCache.txt