Add Docker support for optimized Next.js deployment
All checks were successful
Lint / Lint and Check (push) Successful in 36s
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:
@@ -1,4 +1,6 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {};
|
||||
const nextConfig = {
|
||||
output: 'standalone',
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
||||
Reference in New Issue
Block a user