build push-container into image
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jeffrey C. Ollie 2023-04-15 23:07:16 -05:00
parent 0a71dd39a3
commit 26bac0b55b
Signed by: jeff
GPG key ID: 6F86035A6D97044E

View file

@ -39,6 +39,8 @@
pkgs.nushell
pkgs.podman
pkgs.stdenv.cc.cc.lib
self.packages.${system}.push-container
];
flake-registry = null;
@ -365,19 +367,27 @@
];
};
};
push-container = pkgs.writeTextFile {
name = "push-container";
destination = "/bin/push-container";
text = lib.concatStringsSep "\n" [
"#!${pkgs.nushell}/bin/nu"
(builtins.readFile ./push-container.nu)
];
executable = true;
};
};
apps = {
push-container =
let
script = pkgs.writeTextFile
{
name = "push-container";
text = lib.concatStringsSep "\n" [
"#!${pkgs.nushell}/bin/nu"
(builtins.readFile ./push-container.nu)
];
executable = true;
};
script = pkgs.writeTextFile {
name = "push-container";
text = lib.concatStringsSep "\n" [
"#!${pkgs.nushell}/bin/nu"
(builtins.readFile ./push-container.nu)
];
executable = true;
};
in
{
type = "app";