Files
edr-platform/apps/edr-payment-api/docker-entrypoint.sh
2026-06-12 13:45:29 +03:00

10 lines
156 B
Bash

#!/bin/sh
set -e
cd /app
# npm run executes the same package.json scripts as pnpm run (pnpm reinstalls in deploy layout)
npm run migration:run
exec "$@"