blob: 5075ea62d12578a31df8678d892517bb3dd85418 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/command/with-contenv sh
# shellcheck shell=bash
cd /app/apps/workers;
if [ "${USE_JEMALLOC:-false}" = "true" ]; then
export LD_PRELOAD=/usr/local/lib/libjemalloc.so
fi
exec node dist/index.js
|