Remediate RC6 container scan findings
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-18 04:28:46 +02:00
parent 027e4b078b
commit 6a22fcd1f8
8 changed files with 65 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh
set -eu
if [ "$#" -lt 2 ]; then
echo "usage: gosu user command [args...]" >&2
exit 64
fi
target_user="$1"
shift
exec setpriv \
--reuid="$target_user" \
--regid="$target_user" \
--init-groups \
"$@"