mirror of
https://github.com/johndoe6345789/MetalOS.git
synced 2026-04-24 13:45:02 +00:00
Add Docker build system with dependency management
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
55
.dockerignore
Normal file
55
.dockerignore
Normal file
@@ -0,0 +1,55 @@
|
||||
# Docker ignore file for MetalOS
|
||||
# Excludes unnecessary files from Docker build context
|
||||
|
||||
# Build artifacts
|
||||
build/
|
||||
*.o
|
||||
*.d
|
||||
*.a
|
||||
*.so
|
||||
*.bin
|
||||
*.efi
|
||||
*.elf
|
||||
*.img
|
||||
*.iso
|
||||
*.log
|
||||
|
||||
# Git directory
|
||||
.git/
|
||||
.gitignore
|
||||
.gitattributes
|
||||
|
||||
# Editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
*.sublime-*
|
||||
|
||||
# OS specific
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
*.tmp
|
||||
|
||||
# GitHub workflows (not needed in container)
|
||||
.github/
|
||||
|
||||
# Documentation (will be copied separately if needed)
|
||||
docs/
|
||||
|
||||
# Test artifacts
|
||||
tests/unit/test_*
|
||||
!tests/unit/*.c
|
||||
|
||||
# Qt specific build artifacts
|
||||
*.pro.user
|
||||
*.pro.user.*
|
||||
moc_*.cpp
|
||||
moc_*.h
|
||||
qrc_*.cpp
|
||||
ui_*.h
|
||||
.qmake.stash
|
||||
Reference in New Issue
Block a user