mirror of
https://github.com/Keeper-Security/harness-integration.git
synced 2026-06-04 18:23:51 +08:00
9 lines
222 B
Bash
Executable File
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 "$@"
|