nixpkgs/pkgs/dockerImage.nix

8 lines
157 B
Nix
Raw Permalink Normal View History

2020-03-15 13:24:27 +00:00
{ pkgs ? import <nixpkgs> }:
2020-02-28 22:58:21 +00:00
attrs:
2020-02-29 02:55:56 +00:00
let
default = { config.WorkingDir = "/"; };
input = (default // attrs);
in pkgs.dockerTools.buildLayeredImage input