feat: add Docker deployment support

- Add multi-stage Dockerfile for Next.js standalone build
- Add docker-compose.yml with app and MySQL 8.0 services
- Add .dockerignore for optimized builds
- Update next.config.ts with standalone output
This commit is contained in:
2026-04-13 00:13:24 +08:00
parent 12f7114f7d
commit 875743369d
4 changed files with 157 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
};
export default nextConfig;