feat: Add Dockerfile and docker-compose for deployment

- Multi-stage Dockerfile for optimized image size
- docker-compose.yml for easy local deployment
- Enable standalone output mode for Docker support
This commit is contained in:
2026-03-23 22:04:26 -03:00
parent 0a96638681
commit 13ee0f9922
3 changed files with 63 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone',
};
export default nextConfig;