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

# Install/update dependencies.
# Source code is bind-mounted from the host; node_modules lives on the host
# filesystem via the bind mount so it persists across container restarts
# and is shared between the api and frontend services.
bun install

# Execute the main command
exec "$@"