use just busybox for image
Some checks failed
Build and Publish / build-release (push) Failing after 17m40s

This commit is contained in:
2026-04-13 15:42:40 -05:00
parent 044486ba74
commit 7a7ce1bcbd

View File

@@ -32,16 +32,12 @@
};
dockerImage = pkgs.dockerTools.buildImage {
name = "policy_service";
fromImageName = "hexpm/elixir";
fromImageTag = "1.17.5-erlang-27.0-debian-bookworm-20240612";
copyToRoot = pkgs.buildEnv {
name = "policy-service";
paths = [ package ];
pathsToLink = [ "/bin" ];
};
contents = [
package
pkgs.busybox
];
config = {
Cmd = [ "/bin/bash" ];
WorkingDir = "/";
Cmd = [ "${package}/bin/policy_service" "start" ];
};
};
in