Skip to content

Commit 197b234

Browse files
authored
Create .dockerignore
1 parent 3346789 commit 197b234

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.dockerignore

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Ignore files generated by the build process
2+
build/
3+
dist/
4+
*.exe
5+
*.dll
6+
7+
# Ignore system and IDE files
8+
.DS_Store
9+
Thumbs.db
10+
.vscode/
11+
.idea/
12+
13+
# Ignore dependency directories
14+
node_modules/
15+
vendor/
16+
17+
# Ignore log files
18+
*.log
19+
20+
# Ignore compiled output
21+
*.class
22+
*.jar
23+
*.war
24+
*.ear
25+
26+
# Ignore temporary files
27+
*.tmp
28+
*.swp
29+
*.bak
30+
31+
# Ignore sensitive or personal information
32+
config.ini
33+
secrets.txt
34+
credentials.json
35+
36+
37+
# Ignore specific files or directories
38+
*.csv
39+
*.parquet
40+
*.joblib
41+
*.pkl
42+
43+
# virtualenv
44+
.ven/
45+
.env

0 commit comments

Comments
 (0)