Add Docker support for optimized Next.js deployment
All checks were successful
Lint / Lint and Check (push) Successful in 36s

Introduces Docker configuration files to enable containerized builds
and streamlined deployment using a multi-stage strategy with
standalone Next.js output. Updates configuration to optimize image
size and leverage production best practices.
This commit is contained in:
2025-12-09 13:18:19 +01:00
parent 5387e51f2d
commit ba3ef8bc2b
3 changed files with 77 additions and 1 deletions

View File

@@ -1,4 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
output: 'standalone',
};
export default nextConfig;