서버에 .env 만들어도 .dockerignore 의 .env* 패턴에 막혀 빌드에 안 들어가던 문제 해결. .env.local 같은 개인 파일은 여전히 제외. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
171 B
Plaintext
18 lines
171 B
Plaintext
node_modules
|
|
dist
|
|
build
|
|
.git
|
|
.gitignore
|
|
.env*
|
|
!.env.example
|
|
!.env
|
|
Dockerfile
|
|
.dockerignore
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.DS_Store
|
|
coverage
|
|
.vscode
|
|
.idea
|