Files
bit/entrypoint.dev.sh
T
Juan Rodriguez a17a42e792 build: 🔨 Docker setup
Dockerfile, docker-compose and entrypoint
2021-06-13 09:01:22 -05:00

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
${@}