mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-05-07 01:17:18 +00:00
Add Dockerfile (multi-stage build) and docker-compose.yml to containerize the Next.js app. Uses port 3001 on host to avoid conflict with the local dev server running on 3000. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
188 B
YAML
9 lines
188 B
YAML
services:
|
|
open-generative-ai:
|
|
build: .
|
|
container_name: open-generative-ai
|
|
ports:
|
|
- "3001:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|