forked from Deuxfleurs/nixcfg
12 lines
246 B
Nix
12 lines
246 B
Nix
|
let
|
||
|
common = import ./common.nix;
|
||
|
app = import ./default.nix;
|
||
|
pkgs = import common.pkgsSrc {};
|
||
|
in
|
||
|
pkgs.dockerTools.buildImage {
|
||
|
name = "superboum/backup-psql-docker";
|
||
|
config = {
|
||
|
Cmd = [ "${app}/bin/backup-psql" ];
|
||
|
};
|
||
|
}
|