37 líneas
373 B
Plaintext
37 líneas
373 B
Plaintext
# Ignore ISO files in the build context
|
|
isos/
|
|
*.iso
|
|
|
|
# Ignore output directory
|
|
output/
|
|
|
|
# Git files
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation that's not needed in the image
|
|
README.md
|
|
*.md
|
|
|
|
# Docker files
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
tmp/
|
|
temp/
|