summaryrefslogtreecommitdiffhomepage
path: root/docker/entrypoint.sh
blob: 4f35d94289a6007b1776a6ea8f6ef3329486a430 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
set -euo pipefail

# Production entrypoint
# Future phases: add database migrations here

# Execute the main command
exec "$@"