Files
baclight/bin/docker-entrypoint-development
Jason Jordan 3fbece7da6 Init dump
2025-11-24 08:22:44 -05:00

14 lines
312 B
Bash

#!/bin/bash
set -e
# Remove a potentially pre-existing server.pid for Rails.
rm -f /usr/src/app/tmp/pids/server.pid
rm -rf /usr/local/bundle/cache/*.gem
echo "bundle install..."
bundle check || bundle install --jobs 4
# Then exec the container's main process (what's set as CMD in the Dockerfile).
exec "$@"