20 lines
321 B
Plaintext
20 lines
321 B
Plaintext
# 依赖目录:必须排除,否则 COPY . . 会把本机 node_modules
|
|
# 覆盖容器内刚装好的 Linux 版本
|
|
node_modules
|
|
|
|
# 构建产物(容器内会重新构建)
|
|
.next
|
|
out
|
|
dist
|
|
|
|
# 环境变量与密钥,绝不进镜像
|
|
.env
|
|
.env.local
|
|
.env*.local
|
|
|
|
# 版本控制与开发文件
|
|
.git
|
|
.gitignore
|
|
.gitea
|
|
*.md
|