From c2e208a20b83b924b8a14d1dbf801c5a055868bb Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Thu, 2 Apr 2026 19:06:20 +0200 Subject: [PATCH] fix: Add Entrypoint to container --- Cargo.lock | 2 +- Cargo.toml | 2 +- flake.nix | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 84b460a..4b9e38d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1367,7 +1367,7 @@ dependencies = [ [[package]] name = "karnaugh" -version = "0.1.1" +version = "0.1.2" dependencies = [ "axum", "clap", diff --git a/Cargo.toml b/Cargo.toml index ab93a7a..4e5ba0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "karnaugh" -version = "0.1.1" +version = "0.1.2" edition = "2024" [dependencies] diff --git a/flake.nix b/flake.nix index 4e467fc..2ede610 100644 --- a/flake.nix +++ b/flake.nix @@ -21,9 +21,9 @@ rec { packages.karnaugh = pkgs.rustPlatform.buildRustPackage (final: { pname = "karnaugh"; - version = "0.1.1"; + version = "0.1.2"; src = self; - cargoHash = "sha256-LqPV818AKVQR5ihE3xkEduLhsxvN5m21M8H/AVWBXTU="; + cargoHash = "sha256-YRSK2Vk6I1y/PhH1ZyFAYF0E6IB55So3MTs8B5df4LM="; }); packages.container = pkgs.dockerTools.buildImage { name = "karnaugh"; @@ -36,7 +36,7 @@ }; config = { - Cmd = ["/bin/karnaugh"]; + Entrypoint = ["/bin/karnaugh"]; }; }; packages.default = packages.karnaugh;