budget/bin/docker-entrypoint

14 lines
381 B
Text
Raw Normal View History

2023-09-10 11:37:37 -04:00
#!/bin/bash -e
# Enable jemalloc for reduced memory usage and latency.
if [ -z "${LD_PRELOAD+x}" ] && [ -f /usr/lib/*/libjemalloc.so.2 ]; then
export LD_PRELOAD="$(echo /usr/lib/*/libjemalloc.so.2)"
fi
2023-09-10 11:37:37 -04:00
# If running the rails server then create or migrate existing database
if [ "${1}" == "./bin/rails" ] && [ "${2}" == "server" ]; then
./bin/rails db:prepare
fi
2023-09-10 11:37:37 -04:00
exec "${@}"