summaryrefslogtreecommitdiff
path: root/nix/containerize.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/containerize.nix')
-rw-r--r--nix/containerize.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nix/containerize.nix b/nix/containerize.nix
index b936b90..2be02ef 100644
--- a/nix/containerize.nix
+++ b/nix/containerize.nix
@@ -2,18 +2,18 @@
let
containerize =
- chill-discord-bot:
+ moyai-discord-bot:
let
- inherit (chill-discord-bot.passthru) crossPkgs;
+ inherit (moyai-discord-bot.passthru) crossPkgs;
architecture = crossPkgs.go.GOARCH;
in
dockerTools.buildLayeredImage {
- name = "chill-discord-bot";
+ name = "moyai-discord-bot";
tag = "latest-${architecture}";
contents = [ dockerTools.caCertificates ];
- config.Cmd = [ (lib.getExe chill-discord-bot) ];
+ config.Cmd = [ (lib.getExe moyai-discord-bot) ];
inherit architecture;
};
in