Files
2026-02-13 15:46:14 +05:30

9 lines
222 B
Bash
Executable File

#!/bin/bash
set -e
# Run Node.js script (writes directly to /harness/secrets/ files; no stdout — safe even if entrypoint is bypassed)
node /app/src/index.js
# Hand over control to the Docker command (if any)
exec "$@"