10 lines
147 B
Nix
10 lines
147 B
Nix
{ pkgs, ... }:
|
|
pkgs.dockerTools.buildLayeredImage {
|
|
name = "nix-with-node";
|
|
contents = with pkgs; [
|
|
nix
|
|
nodejs
|
|
bash
|
|
git
|
|
];
|
|
}
|