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.
2 parents b15727f + 382f363 commit 1fec8caCopy full SHA for 1fec8ca
pkgs.nix
@@ -1,4 +1,4 @@
1
import (
2
- let rev = "a5774e76bb8c3145eac524be62375c937143b80c"; in
+ let rev = "ce6aa13369b667ac2542593170993504932eb836"; in
3
builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz"
4
)
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