Skip to content
Snippets Groups Projects
entrypoint-dev 595 B
Newer Older
i.vasilenko@iq-adv.ru's avatar
i.vasilenko@iq-adv.ru committed
#!/bin/sh
set -eu

# ----------------------------------------------------------------------------------------------------------------------

echo "► Starting Development Entrypoint..."

# ----------------------------------------------------------------------------------------------------------------------

echo "► Running 'post-build-base && post-build-dev' script(s)..."
post-build-base && post-build-dev

# Run custom ad-hoc pre-run script
echo "► Running custom pre-run (dev) script..."
pre-run-dev

# Run Entrypoint and pass CMD to it (Don't forget exec)
exec entrypoint-base "${@}"