Browse Source

ci/docker: optimize dockerignore, runner script, and Jenkinsfile

master
nwhco 6 hours ago
parent
commit
2cc6da137a
  1. 22
      .dockerignore

22
.dockerignore

@ -1,20 +1,15 @@
# Version control
.git .git
.gitignore .gitignore
.gitattributes .gitattributes
# Python cache & bytecode
__pycache__ __pycache__
*.py[cod] *.py[cod]
*.class
*$py.class
*.so *.so
.Python .Python
*.egg-info *.egg-info
dist dist
build build
*.egg *.egg
# Virtual environments & node_modules
venv venv
env env
ENV ENV
@ -22,8 +17,6 @@ env.bak
venv.bak venv.bak
.venv .venv
node_modules node_modules
# IDE & OS
.vscode .vscode
.idea .idea
*.swp *.swp
@ -31,20 +24,14 @@ node_modules
*~ *~
.DS_Store .DS_Store
Thumbs.db Thumbs.db
# Docker files
docker-compose*.yml docker-compose*.yml
Dockerfile* Dockerfile*
.dockerignore .dockerignore
# Environment files
.env .env
.env.dev .env.dev
.env.development .env.development
.env.local .env.local
.env.test .env.test
# Logs & database dumps
*.log *.log
logs logs
*.sqlite3 *.sqlite3
@ -52,8 +39,6 @@ logs
*.tar.gz *.tar.gz
*.zip *.zip
*.bak *.bak
# Testing & linting
.pytest_cache .pytest_cache
.coverage .coverage
htmlcov htmlcov
@ -64,8 +49,6 @@ htmlcov
dmypy.json dmypy.json
test_*.py test_*.py
tests tests
# Documentation & CI
*.md *.md
docs docs
Jenkinsfile Jenkinsfile
@ -74,8 +57,6 @@ Jenkinsfile
.claude .claude
.qodo .qodo
.zencoder .zencoder
# Large volumes & temporary uploads
volumes volumes
staticfiles staticfiles
media media
@ -83,4 +64,3 @@ media_volume
recordings recordings
data/*.xlsx data/*.xlsx
data/*.csv data/*.csv
Loading…
Cancel
Save