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
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
echo "=== MPC Service Starting ==="
|
echo "=== MPC Service Starting ==="
|
||||||
echo "Running database migrations..."
|
echo "Running database migrations..."
|
||||||
|
|
||||||
# Run migrations (standard production approach - fail if migration fails)
|
# Run migrations (standard production approach - fail if migration fails)
|
||||||
npx prisma migrate deploy
|
npx prisma migrate deploy
|
||||||
|
|
||||||
echo "Database migrations completed"
|
echo "Database migrations completed"
|
||||||
echo "Starting application..."
|
echo "Starting application..."
|
||||||
|
|
||||||
# Start the application
|
# Start the application
|
||||||
exec node dist/main.js
|
exec node dist/main.js
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue