list-of-lp/.dockerignore
m4x809 25d212f884
Add Docker support with Dockerfile and .dockerignore
- Introduced a Dockerfile for building and running the Next.js application using Bun.
- Configured multi-stage builds for optimized dependency management and production setup.
- Added a .dockerignore file to exclude unnecessary files from the Docker context, improving build efficiency.
2025-10-25 03:37:05 +02:00

51 lines
373 B
Text

# Dependencies
node_modules
.pnp
.pnp.js
# Testing
coverage
# Next.js
.next
out
# Production
build
dist
# Misc
.DS_Store
*.pem
# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.log
# Local env files
.env*.local
.env
# Vercel
.vercel
# Typescript
*.tsbuildinfo
# Git
.git
.gitignore
# IDE
.vscode
.idea
*.swp
*.swo
*~
# README
README.md
scripts/README.md