Skip to content

Commit

Permalink
fix(container): add tmp directory for cnf compilation (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
uulm-janbaudisch authored Jan 31, 2025
1 parent 63cdf51 commit cd8e640
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@

container = pkgs.dockerTools.buildLayeredImage {
name = "ddnnife";
contents = [ self.packages.${system}.ddnnife-d4 ];
contents = [
self.packages.${system}.ddnnife-d4
(pkgs.runCommand "create-tmp" { } "install -dm 1777 $out/tmp")
];
config = {
Entrypoint = [ "/bin/ddnnife" ];
Labels = {
Expand Down

0 comments on commit cd8e640

Please sign in to comment.