refactor: move Docker build files to build/ directory
This commit is contained in:
55
build/.dockerignore
Normal file
55
build/.dockerignore
Normal file
@ -0,0 +1,55 @@
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# Python
|
||||
__pycache__
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
*.egg-info
|
||||
.eggs
|
||||
*.egg
|
||||
.pytest_cache
|
||||
.coverage
|
||||
htmlcov
|
||||
|
||||
# 가상환경
|
||||
venv/
|
||||
.venv/
|
||||
ENV/
|
||||
env/
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# 로그 및 데이터 (컨테이너에서 볼륨으로 마운트)
|
||||
logs/
|
||||
data/
|
||||
*.log
|
||||
|
||||
# 환경 파일 (docker-compose에서 env_file로 마운트)
|
||||
.env
|
||||
|
||||
# 임시 파일
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
*.bak
|
||||
|
||||
# Docker 관련
|
||||
Dockerfile
|
||||
docker-compose*.yml
|
||||
.dockerignore
|
||||
|
||||
# 문서
|
||||
*.md
|
||||
!README.md
|
||||
|
||||
# 기타
|
||||
*.sqlite
|
||||
*.db
|
||||
Reference in New Issue
Block a user