Commit bb5827a6 authored by mupdt's avatar mupdt
Browse files

dockerTools: prefer local builds

parent bd4bfd81
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -547,10 +547,14 @@ rec {
          pure = writeText "${baseName}-config.json" (builtins.toJSON {
            inherit created config;
            architecture = defaultArch;
            preferLocalBuild = true;
            os = "linux";
          });
          impure = runCommand "${baseName}-config.json"
            { nativeBuildInputs = [ jq ]; }
            {
              nativeBuildInputs = [ jq ];
              preferLocalBuild = true;
            }
            ''
              jq ".created = \"$(TZ=utc date --iso-8601="seconds")\"" ${pure} > $out
            '';
@@ -925,6 +929,7 @@ rec {
          {
            inherit fromImage maxLayers created;
            imageName = lib.toLower name;
            preferLocalBuild = true;
            passthru.imageTag =
              if tag != null
              then tag
@@ -1015,6 +1020,7 @@ rec {
        result = runCommand "stream-${baseName}"
          {
            inherit (conf) imageName;
            preferLocalBuild = true;
            passthru = passthru // {
              inherit (conf) imageTag;

+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ path: runCommand "closure-paths"
{
  exportReferencesGraph.graph = path;
  __structuredAttrs = true;
  preferLocalBuild = true;
  PATH = "${coreutils}/bin:${python3}/bin";
  builder = builtins.toFile "builder"
    ''