nixcfg/cluster/prod/app/backup/build/backup-psql/docker.nix

12 lines
246 B
Nix
Raw Normal View History

2022-09-01 16:05:50 +00:00
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" ];
};
}