krata/entrypoint.sh

11 lines
223 B
Bash
Raw Permalink Normal View History

2024-04-10 10:49:16 +02:00
#!/bin/bash
set -e
2024-04-12 08:42:45 +02:00
git config --global --add safe.directory /app
2024-04-10 10:49:16 +02:00
rm -f /app/tmp/pids/server.pid
gem update --system
bundle install
# Then exec the container's main process (what's set as CMD in the Dockerfile).
exec "$@"