fix(mpc-service): convert docker-entrypoint.sh line endings from CRLF to LF
This commit is contained in:
parent
54b9a66041
commit
5e93bbac33
|
|
@ -1,14 +1,14 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
echo "=== MPC Service Starting ==="
|
||||
echo "Running database migrations..."
|
||||
|
||||
# Run migrations (standard production approach - fail if migration fails)
|
||||
npx prisma migrate deploy
|
||||
|
||||
echo "Database migrations completed"
|
||||
echo "Starting application..."
|
||||
|
||||
# Start the application
|
||||
exec node dist/main.js
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
echo "=== MPC Service Starting ==="
|
||||
echo "Running database migrations..."
|
||||
|
||||
# Run migrations (standard production approach - fail if migration fails)
|
||||
npx prisma migrate deploy
|
||||
|
||||
echo "Database migrations completed"
|
||||
echo "Starting application..."
|
||||
|
||||
# Start the application
|
||||
exec node dist/main.js
|
||||
|
|
|
|||
Loading…
Reference in New Issue