fix: add dockerignore files and fix docker-compose config

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
zephyrdark 2026-02-02 23:10:01 +09:00
parent b60aa558cc
commit 6885dbd580
3 changed files with 26 additions and 2 deletions

16
backend/.dockerignore Normal file
View File

@ -0,0 +1,16 @@
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
ENV/
.git/
.gitignore
.env
.env.*
*.log
.pytest_cache/
.coverage
htmlcov/

View File

@ -1,5 +1,3 @@
version: '3.8'
services:
postgres:
image: postgres:15-alpine
@ -28,6 +26,7 @@ services:
JWT_SECRET: ${JWT_SECRET:-dev-jwt-secret-change-in-production}
KIS_APP_KEY: ${KIS_APP_KEY:-}
KIS_APP_SECRET: ${KIS_APP_SECRET:-}
KIS_ACCOUNT_NO: ${KIS_ACCOUNT_NO:-}
DART_API_KEY: ${DART_API_KEY:-}
ports:
- "8000:8000"

9
frontend/.dockerignore Normal file
View File

@ -0,0 +1,9 @@
node_modules/
.next/
out/
.git/
.gitignore
.env
.env.*
*.log
npm-debug.log*