feat: Dockerize web application by adding Dockerfile, .dockerignore, and configuring next.config for standalone output and image optimization.

This commit is contained in:
pradeepkumar
2025-12-24 06:39:13 +05:30
parent 4a24e740bc
commit e87946fbb4
3 changed files with 131 additions and 1 deletions

53
.dockerignore Normal file
View File

@@ -0,0 +1,53 @@
# Dependencies
node_modules
npm-debug.log
# Next.js build output
.next
out
# Environment files
.env
.env.*
!.env.example
# IDE
.idea
.vscode
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Git
.git
.gitignore
# Docker
Dockerfile
docker-compose*.yml
.dockerignore
# Testing
coverage
.nyc_output
__tests__
*.spec.ts
*.test.ts
*.spec.tsx
*.test.tsx
# Documentation
docs
*.md
!README.md
# Logs
logs
*.log
# Misc
.eslintcache
.prettierignore