Files
incudal/server/docker-entrypoint.sh
2026-06-20 14:26:29 +08:00

11 lines
176 B
Bash

#!/bin/sh
set -e
echo "🔄 Running database migrations..."
cd /app/server
npx prisma migrate deploy
echo "🚀 Starting application..."
cd /app
exec node server/dist/app.js