fix: dockerfile install order; add .dockerignore; update .gitignore
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
# Version control
|
||||
.git/
|
||||
.gitignore
|
||||
|
||||
# Docs and planning
|
||||
docs/
|
||||
README*
|
||||
*.md
|
||||
|
||||
# Tests
|
||||
tests/
|
||||
|
||||
# Dev tooling
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
|
||||
# Secrets / local config (mounted at runtime via volume)
|
||||
.env
|
||||
*.env.local
|
||||
config.yaml
|
||||
|
||||
# Runtime data (mounted at runtime via volume)
|
||||
playbook_cache/
|
||||
|
||||
# Plugins (mounted at runtime via volume)
|
||||
plugins/
|
||||
|
||||
# Deployment files not needed in image
|
||||
docker-compose.yml
|
||||
systemd/
|
||||
|
||||
# Editor / OS
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Python artifacts
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
Reference in New Issue
Block a user