업데이트
This commit is contained in:
75
.dockerignore
Normal file
75
.dockerignore
Normal file
@@ -0,0 +1,75 @@
|
||||
# 개발/테스트 관련 파일
|
||||
src/tests/
|
||||
src/__pycache__/
|
||||
src/tests/__pycache__/
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
.Python
|
||||
|
||||
# 테스트 파일
|
||||
test_*.py
|
||||
*_test.py
|
||||
pytest.ini
|
||||
.pytest_cache/
|
||||
|
||||
# 문서
|
||||
docs/
|
||||
*.md
|
||||
!README.md
|
||||
|
||||
# Git
|
||||
.git/
|
||||
.gitignore
|
||||
.gitattributes
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# 환경 변수 (보안)
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# 로그 (도커 내부에서 생성)
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# 데이터 파일 (마운트로 관리)
|
||||
data/
|
||||
*.json
|
||||
|
||||
# 백업 파일
|
||||
*.backup
|
||||
*.backup_*
|
||||
*.corrupted.*
|
||||
*.tmp
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Python 가상환경
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
.venv/
|
||||
|
||||
# 빌드 결과물
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
|
||||
# Coverage
|
||||
.coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
|
||||
# Jupyter
|
||||
.ipynb_checkpoints/
|
||||
*.ipynb
|
||||
Reference in New Issue
Block a user