-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.dockerignore
42 lines (34 loc) · 959 Bytes
/
.dockerignore
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
# Git files - No need to include Git metadata in the image
.git
.gitignore
# Docker configuration files
.dockerignore
Dockerfile
# IDE configuration files - User-specific configurations that don’t affect the container
.idea/
.vscode/
*.iml
# System files - OS-specific and hidden system files
.DS_Store
Thumbs.db
# Node.js specific - Exclude dependencies and lock files not required at build time
node_modules/
npm-debug.log
# Uncomment if using npm exclusively
# package-lock.json
# Uncomment if using yarn exclusively
# yarn.lock
# Log files - Avoid unnecessary logs in the image
logs/
*.log
# Environment files (use Docker environment variables instead)
.env
# Development and testing files - Exclude files meant for development and testing
src/tests/ # Exclude test scripts
src/scripts/ # Exclude any development-specific scripts
Makefile
Makefile.help
Makefile.variables
# Documentation and metadata files
README.md
SECURITY.md