entrypoint.sh 187 B

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