mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-17 09:37:49 +01: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 "$@"
|