From 775191d5c1634bdcf59b5253838a8c95685b5a86 Mon Sep 17 00:00:00 2001 From: strawberry Date: Mon, 15 Apr 2024 00:52:22 -0400 Subject: [PATCH] dont include the timestamp in the docker image created date i hate this Signed-off-by: strawberry --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 2c5324f3..dcea0c2d 100644 --- a/flake.nix +++ b/flake.nix @@ -198,7 +198,7 @@ name = package.pname; tag = "main"; # Debian makes builds reproducible through using the HEAD commit's date - created = self.lastModifiedDate; + created = builtins.substring 0 8 self.lastModifiedDate; copyToRoot = [ pkgs.dockerTools.caCertificates ];