Move entrypoint based on rails convention

This commit is contained in:
Ryan W
2023-01-26 15:50:38 -08:00
parent 4cac5b36f9
commit e96a68e9f9
2 changed files with 1 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
set -e
# Remove a potentially pre-existing server.pid for Rails.
rm -f /usr/src/app/tmp/pids/server.pid
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 "$@"