Merge pull request #135670 from NixOS/docker-tools-usr-bin-env

dockerTools.usrBinEnv: add
This commit is contained in:
Robert Hensing
2021-08-25 18:19:45 +02:00
committed by GitHub
+7
View File
@@ -759,6 +759,13 @@ rec {
];
};
# This provides a /usr/bin/env, for shell scripts using the
# "#!/usr/bin/env executable" shebang.
usrBinEnv = runCommand "usr-bin-env" { } ''
mkdir -p $out/usr/bin
ln -s ${pkgs.coreutils}/bin/env $out/usr/bin
'';
# This provides /bin/sh, pointing to bashInteractive.
binSh = runCommand "bin-sh" { } ''
mkdir -p $out/bin