a17a42e792
Dockerfile, docker-compose and entrypoint
10 lines
143 B
Bash
10 lines
143 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
echo "Environment: $RAILS_ENV"
|
|
|
|
bundle check || bundle install --jobs 20 --retry 5
|
|
|
|
rm -f $APP_PATH/tmp/pids/server.pid
|
|
|
|
${@} |