Files
landing-api/docker/entrypoint.sh
T
leonm e362f03a39
CI / 🧪 Tests Laravel (push) Successful in 1m1s
CI / 🐳 Build & Push Image (push) Successful in 9s
feat: entry point
2026-07-10 16:55:26 +02:00

14 lines
289 B
Bash

#!/bin/sh
set -e
echo "🔧 Caching config, routes and views..."
php artisan config:cache
php artisan route:cache
php artisan view:cache
echo "🗄️ Running migrations..."
php artisan migrate --force
echo "🚀 Starting FrankenPHP..."
exec frankenphp php-server --listen 0.0.0.0:8000