fix check
Some checks are pending
Build and Publish / build-release (push) Waiting to run

This commit is contained in:
2026-04-13 16:11:20 -05:00
parent 7a7ce1bcbd
commit 3559699e40
2 changed files with 3 additions and 6 deletions

View File

@@ -30,12 +30,9 @@
mainProgram = "policy_service";
};
};
dockerImage = pkgs.dockerTools.buildImage {
dockerImage = pkgs.dockerTools.buildLayeredImage {
name = "policy_service";
contents = [
package
pkgs.busybox
];
contents = [ package ];
config = {
Cmd = [ "${package}/bin/policy_service" "start" ];
};