8 lines
182 B
Nix
8 lines
182 B
Nix
|
{ depot, ... }:
|
||
|
|
||
|
depot.third_party.dockerTools.buildLayeredImage {
|
||
|
name = "tvldb";
|
||
|
contents = [ depot.fun.tvldb ];
|
||
|
config.Entrypoint = [ "${depot.fun.tvldb}/bin/paroxysm" ];
|
||
|
}
|