Skip to content

Commit

Permalink
fix(container): specify Cmd instead of Entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
justinrubek committed Apr 7, 2024
1 parent 4ec4ff7 commit cc6a9bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flake-parts/containers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
packages."annapurna/docker" = nix2container.buildImage {
name = "annapurna";
config = {
entrypoint = ["${self'.packages.cli}/bin/annapurna-cli"];
Cmd = ["${self'.packages.cli}/bin/annapurna-cli"];
WorkingDir = "/app";
};
copyToRoot = pkgs.buildEnv {
name = "root";
Expand Down

0 comments on commit cc6a9bf

Please sign in to comment.