weathermen/soundstorm

View on GitHub
bin/entrypoint.sh

Summary

Maintainability
Test Coverage
#!/bin/sh
set -e

# Remove a potentially pre-existing server.pid for Rails.
rm -f /usr/src/app/tmp/pids/server.pid

# Then exec the container's main process (what's set as CMD in the Dockerfile).
exec "$@"