mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
2f7705a41a
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
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 "$@"
|