mirror of
https://github.com/NixOS/nix.git
synced 2024-11-25 08:12:29 +00:00
Allow specification of extra packages, maxLayers in Docker image
This commit is contained in:
parent
b7eb4ac169
commit
07416a6005
@ -4,6 +4,8 @@
|
||||
, tag ? "latest"
|
||||
, channelName ? "nixpkgs"
|
||||
, channelURL ? "https://nixos.org/channels/nixpkgs-unstable"
|
||||
, extraPkgs ? []
|
||||
, maxLayers ? 100
|
||||
}:
|
||||
let
|
||||
defaultPkgs = with pkgs; [
|
||||
@ -23,7 +25,7 @@ let
|
||||
iana-etc
|
||||
git
|
||||
openssh
|
||||
];
|
||||
] ++ extraPkgs;
|
||||
|
||||
users = {
|
||||
|
||||
@ -229,7 +231,7 @@ let
|
||||
in
|
||||
pkgs.dockerTools.buildLayeredImageWithNixDb {
|
||||
|
||||
inherit name tag;
|
||||
inherit name tag maxLayers;
|
||||
|
||||
contents = [ baseSystem ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user