Create Dockerfile

This commit is contained in:
Mathias Wagner
2025-09-09 10:39:24 +02:00
parent 5a9e1e2e2b
commit 439578434e
2 changed files with 88 additions and 0 deletions

35
.dockerignore Normal file
View File

@@ -0,0 +1,35 @@
# Git
.git
.gitignore
README.md
LICENSE
# Rust
server/target/
**/*.rs.bk
# Node.js
webui/node_modules/
webui/dist/
webui/.vite/
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
*.log
server/data/logs/
# Database (for development)
server/data/db/*.db
server/data/backups/
# Cache
.cache/