36 lines
536 B
Plaintext
36 lines
536 B
Plaintext
# Dependencies & build output (reinstalled / rebuilt inside the image)
|
|||
|
|
node_modules
|
||
|
|
.next
|
||
|
|
out
|
||
|
|
build
|
||
|
|
coverage
|
||
|
|
|
||
|
|
# Secrets — never bake env files into the image
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
|
||
|
|
# Local file storage (uploads live on a mounted volume, not in the image)
|
||
|
|
storage
|
||
|
|
|
||
|
|
# Version control & tooling
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
.gitattributes
|
||
|
|
.vercel
|
||
|
|
*.tsbuildinfo
|
||
|
|
|
||
|
|
# Editor / OS noise
|
||
|
|
.DS_Store
|
||
|
|
.vscode
|
||
|
|
.idea
|
||
|
|
|
||
|
|
# Docs not needed at runtime
|
||
|
|
DOCS
|
||
|
|
README.md
|
||
|
|
COOLIFY.md
|
||
|
|
|
||
|
|
# Don't copy the Docker context files into the image
|
||
|
|
Dockerfile
|
||
|
|
.dockerignore
|
||
|
|
docker-compose.yml
|