build: add Docker entrypoint scripts for automated setup
- Add backend entrypoint with automated Prisma migrations and client regeneration - Add frontend entrypoint with dependency management - Update Dockerfiles to use entrypoint scripts - Ensures database schema stays in sync with Prisma Client after migrations
This commit is contained in:
17
frontend/docker-entrypoint.sh
Normal file
17
frontend/docker-entrypoint.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
echo "🔧 Checking dependencies..."
|
||||
|
||||
# Install dependencies if node_modules doesn't exist or package.json changed
|
||||
if [ ! -d "node_modules" ] || [ "package.json" -nt "node_modules" ]; then
|
||||
echo "📦 Installing npm dependencies..."
|
||||
npm install
|
||||
else
|
||||
echo "✅ Dependencies already installed"
|
||||
fi
|
||||
|
||||
echo "✅ Ready to start!"
|
||||
|
||||
# Execute the main command (passed as arguments to this script)
|
||||
exec "$@"
|
||||
Reference in New Issue
Block a user