- Add .dockerignore to exclude instance/, test_data/, rpi/, etc. - Create instance/certs dirs in Dockerfile for volume mounts - Ensures stego user can write to mounted volumes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
330 B
Plaintext
40 lines
330 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*.egg-info
|
|
.eggs
|
|
venv/
|
|
.venv/
|
|
|
|
# Instance data (user creates fresh)
|
|
frontends/web/instance/
|
|
frontends/web/certs/
|
|
instance/
|
|
|
|
# Test data
|
|
test_data/
|
|
tests/
|
|
|
|
# Pi-specific
|
|
rpi/
|
|
*.img
|
|
*.img.zst
|
|
*.img.zst.zip
|
|
|
|
# Docs
|
|
*.md
|
|
docs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Misc
|
|
*.log
|
|
*.tmp
|
|
.DS_Store
|