Files
baclight/bin/docker-entrypoint-production
T
2023-09-30 21:18:46 -07:00

13 lines
246 B
Bash
Executable File

#!/bin/bash -e
echo "entrypoint"
echo "${*}"
# If running the rails server then create or migrate existing database
# bundle exec puma -C config/puma.rb
# if [ "${*}" == "./bin/rails server" ]; then
# ./bin/rails db:prepare
# fi
exec "${@}"