We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
created = "now";
1 parent b256493 commit 382f363Copy full SHA for 382f363
release.nix
@@ -72,7 +72,10 @@ in
72
docker = dockerTools.buildImage {
73
name = application.name;
74
contents = [ application ];
75
+ # This ensures symlinks to directories are preserved in the image
76
keepContentsDirlinks = true;
77
+ # This adds a correct timestamp, however breaks binary reproducibility
78
+ created = "now";
79
extraCommands = ''
80
mkdir -m 1777 tmp
81
'';
0 commit comments