build: dockerize repo

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2025-10-25 01:21:49 +00:00
parent 6c3701ad32
commit 5640ffa990
3 changed files with 112 additions and 0 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
version: '3.8'
services:
eva:
build:
context: .
dockerfile: Dockerfile
image: eva-monorepo:latest
container_name: eva
restart: unless-stopped
ports:
- "8000:8000"
environment:
- NODE_ENV=production
# Uncomment and configure if you need to pass environment variables
# env_file:
# - apps/backend/.env
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s