mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 19:12:48 +00:00
- 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.
51 lines
373 B
Text
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
|
|
|