Chore: Update Docker setup and walkthrough

This commit is contained in:
Hördle Bot
2025-11-22 11:56:22 +01:00
parent 8c720e287f
commit 15746f404a
4 changed files with 64 additions and 39 deletions

12
scripts/docker-entrypoint.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
set -e
echo "Starting deployment..."
# Run migrations
echo "Running database migrations..."
npx prisma migrate deploy
# Start the application
echo "Starting application..."
exec node server.js