fix: add dockerignore files and fix docker-compose config
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b60aa558cc
commit
6885dbd580
16
backend/.dockerignore
Normal file
16
backend/.dockerignore
Normal file
@ -0,0 +1,16 @@
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
.venv/
|
||||
venv/
|
||||
ENV/
|
||||
.git/
|
||||
.gitignore
|
||||
.env
|
||||
.env.*
|
||||
*.log
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
@ -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
9
frontend/.dockerignore
Normal file
@ -0,0 +1,9 @@
|
||||
node_modules/
|
||||
.next/
|
||||
out/
|
||||
.git/
|
||||
.gitignore
|
||||
.env
|
||||
.env.*
|
||||
*.log
|
||||
npm-debug.log*
|
||||
Loading…
x
Reference in New Issue
Block a user