mirror of
https://github.com/abusoww/tuxmate.git
synced 2026-04-18 00:03:23 +02:00
- Add multi-stage Dockerfile with Node.js 20 Alpine - Add docker-compose.yml for easy deployment - Add .dockerignore to optimize build context - Enable standalone output in next.config.ts - Add Docker deployment documentation to README - Move Docker support from planned to completed in roadmap The Dockerfile uses a three-stage build process: 1. deps: Install production dependencies 2. builder: Build Next.js application 3. runner: Minimal production runtime with non-root user Includes health checks, restart policy, and security best practices.
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|