12 lines
324 B
Bash
12 lines
324 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cp /config/.runner /builder/.runner
|
|
chmod 600 /builder/.runner
|
|
|
|
mkdir -p /builder/.config/containers
|
|
cp /config/auth.json /builder/.config/containers/auth.json
|
|
chmod 600 /builder/.config/containers/auth.json
|
|
|
|
exec setpriv --ambient-caps "-all" /usr/local/bin/forgejo-runner one-job --config config.yaml
|