entrypoint.sh 194 B

1234567
  1. #!/bin/bash
  2. set -eoux pipefail
  3. chown -R "$USER_ID" /var/run
  4. # Drop permissions of user to match those of the host system
  5. gosu "$USER_ID" python3 /FrameworkBenchmarks/toolset/run-tests.py "$@"