feat(docker): add docker functionality.

This commit is contained in:
Didier Slof 2023-05-07 21:08:14 +02:00
parent fabaafbbe7
commit e4f14f9531
Signed by: didier
GPG key ID: 01E71F18AA4398E5
6 changed files with 61 additions and 3 deletions

View file

@ -0,0 +1,10 @@
#!/bin/sh
set -e
[ -z "$DEBUG" ] || set -x
if [ ! -f /app/bumblebee ]; then
echo "$0: /app/bumblebee not found, I can't start!!"
exit 1
fi

View file

@ -0,0 +1,11 @@
#!/bin/sh
set -e
for file in /docker-entrypoint.d/*; do
echo "$0: running $file"
sh "$file"
done
cd /app
exec ./bumblebee