Fix Kingfisher container: make /tmp world-writable
All checks were successful
Build Container / detect (push) Successful in 2s
Build Container / build-nix (kingfisher) (push) Successful in 22s

Container runs as user 65534 (nobody) but /tmp was owned by root.
Set sticky bit + world-writable (1777) like a standard /tmp.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-03-30 06:53:34 -07:00
commit 0fe0eed35a

View file

@ -107,6 +107,7 @@ pkgs.dockerTools.buildLayeredImage {
extraCommands = ''
mkdir -p tmp
chmod 1777 tmp
'';
config = {