runAsRoot requires kvm...
Some checks failed
Test action / Print hello world (push) Failing after 1m50s

This commit is contained in:
Chris Kruining 2025-09-04 15:43:18 +02:00
parent 1cbfb6b5c0
commit 7070382596
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -21,16 +21,8 @@ dockerTools.buildImage {
]; ];
}; };
runAsRoot = ''
echo "je moeder!";
'';
config = { config = {
User = "runner"; User = "runner";
Cmd = [ "${lib.getExe bashInteractive}" ]; Cmd = [ "${lib.getExe bashInteractive}" ];
WorkingDir = "/data";
Volumes = {
"/data" = {};
};
}; };
} }