Skip to content

Commit

Permalink
fix(containers): disable timestamp of images
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Jul 1, 2024
1 parent a52c831 commit 7b67175
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nix/containers/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ in {
containerImageConfig = {
name = "${packageName}";
tag = "latest";
created = "now";
# created = "now";

maxLayers = 123;
maxLayers = 121;

contents = devcontainerContents;
config = makeContainerConfig {
Expand All @@ -180,9 +180,9 @@ in {
devcontainerImageConfig = {
name = "${packageName}dev";
tag = "latest";
created = "now";
# created = "now";

maxLayers = 123;
maxLayers = 121;

contents = devcontainerContents;
# runAsRoot = ''
Expand Down

0 comments on commit 7b67175

Please sign in to comment.