9140613a96
The starting scripts now `exec` the main service instead of starting it as a subprocess. Also in line with docker-entrypoint recommendations.
6 lines
97 B
Bash
6 lines
97 B
Bash
#!/usr/bin/env bash
|
|
rm -rf libs
|
|
grails clean
|
|
grails compile
|
|
exec grails prod run-app --port 8181
|