feat: Add Dockerfile and docker-compose for deployment

- Multi-stage Dockerfile for optimized image size
- docker-compose.yml for easy local deployment
- Enable standalone output mode for Docker support
This commit is contained in:
2026-03-23 22:04:26 -03:00
parent 0a96638681
commit 13ee0f9922
3 changed files with 63 additions and 1 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- ./prisma:/app/prisma
environment:
- DATABASE_URL=file:./dev.db
restart: unless-stopped