mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-04-01 01:40:53 +02:00
8 lines
61 B
Bash
Executable File
8 lines
61 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
|
|
rake db:setup
|
|
|
|
exec "$@"
|