refactor: move Docker build files to build/ directory

This commit is contained in:
2025-12-31 11:26:54 +09:00
parent 24939ab7a7
commit 8cfeaae92d
5 changed files with 3 additions and 3 deletions

55
build/.dockerignore Normal file
View 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