From 88b5966a4454c50a17a6477a1b35368ecebb974a Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Thu, 27 Oct 2022 18:34:10 +0200 Subject: [PATCH] nix: Remove deprecation warning for dockerTools.buildImage { contents } Signed-off-by: Wolfgang Walther --- nix/tools/docker/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/tools/docker/default.nix b/nix/tools/docker/default.nix index 2873225b3..8fdce82c1 100644 --- a/nix/tools/docker/default.nix +++ b/nix/tools/docker/default.nix @@ -8,7 +8,7 @@ let dockerTools.buildImage { name = "postgrest"; tag = "latest"; - contents = postgrest; + copyToRoot = postgrest; # Set the current time as the image creation date. This makes the build # non-reproducible, but that should not be an issue for us.