11 lines
129 B
Bash
11 lines
129 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for file in /docker-entrypoint.d/*; do
|
|
echo "$0: running $file"
|
|
sh "$file"
|
|
done
|
|
|
|
cd /app
|
|
exec ./bumblebee
|