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 { dockerImage = pkgs.dockerTools.buildImage {
name = "policy_service"; name = "policy_service";
fromImageName = "hexpm/elixir"; contents = [
fromImageTag = "1.17.5-erlang-27.0-debian-bookworm-20240612"; package
copyToRoot = pkgs.buildEnv { pkgs.busybox
name = "policy-service"; ];
paths = [ package ];
pathsToLink = [ "/bin" ];
};
config = { config = {
Cmd = [ "/bin/bash" ]; Cmd = [ "${package}/bin/policy_service" "start" ];
WorkingDir = "/";
}; };
}; };
in in