-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.dockerignore
More file actions
161 lines (136 loc) · 2.12 KB
/
.dockerignore
File metadata and controls
161 lines (136 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# .dockerignore - 1분 이내 빌드 최적화
# 🚀 ULTRA FAST VERSION - 불필요한 파일 완전 제거
# Node.js 관련 (용량 큰 폴더들)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# 빌드 결과물 (재빌드되므로 제외)
.next/
out/
build/
dist/
.cache/
.parcel-cache/
.turbo/
# 환경 설정 (보안상 제외)
.env*
!.env.example
# 테스트 관련 (빌드에 불필요)
coverage/
__tests__/
*.test.*
*.spec.*
.nyc_output/
jest.config.*
cypress/
cypress.json
e2e/
playwright.config.*
# TypeScript 관련 (빌드 시 재생성)
*.tsbuildinfo
next-env.d.ts
# 개발 도구 (용량 큰 설정들)
.vscode/
.idea/
*.swp
*.swo
*~
# OS 파일들 (불필요)
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
*.pem
# Git 관련 (불필요)
.git/
.gitignore
.gitattributes
.gitmodules
# 문서 및 설명 (빌드에 불필요)
README.md
CHANGELOG.md
LICENSE
*.md
docs/
documentation/
# 개발 전용 설정들
.eslintrc*
.prettierrc*
.stylelintrc*
.editorconfig
.nvmrc
.node-version
# 패키지 관리자 백업
package-lock.json.bak
yarn.lock.bak
.yarn/cache/
.yarn/unplugged/
.yarn/build-state.yml
.yarn/install-state.gz
# 로그 및 임시 파일들
*.log
logs/
tmp/
temp/
.tmp/
# 소스맵 (프로덕션에서 제외)
**/*.map
# Storybook (개발 전용)
.storybook/
storybook-static/
stories/
# 예제 및 데모 (불필요)
examples/
demo/
playground/
scratch/
# 모니터링 및 분석 (빌드에 불필요)
.lighthouseci/
.nyc_output/
# 클라우드 설정 (불필요)
.vercel/
.netlify/
.firebase/
# 백업 파일들
*.backup
*.bak
*.orig
# IDE 특정 파일들
.vscode/settings.json
.vscode/launch.json
.vscode/extensions.json
.idea/workspace.xml
.idea/tasks.xml
# 개발 서버 관련
.next/
.nuxt/
.output/
.nitro/
# 패키지 관리자 특정 파일들
.pnpm-store/
.rush/
# 기타 개발 도구들
.husky/
.commitlintrc*
.renovaterc*
.github/
!.github/workflows/
# 큰 미디어 파일들 (필요한 것만 public에)
*.mov
*.mp4
*.avi
*.mkv
*.wmv
*.flv
# 개발 전용 이미지들
mockups/
wireframes/
design-assets/
# 벤더 폴더들
vendor/
third-party/