This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/app/backup/build/backup-psql/docker.nix

12 lines
246 B
Nix
Raw Normal View History

2022-04-15 10:36:49 +00:00
let
common = import ./common.nix;
app = import ./default.nix;
pkgs = import common.pkgsSrc {};
in
2022-04-15 12:57:54 +00:00
pkgs.dockerTools.buildImage {
2022-04-15 10:36:49 +00:00
name = "superboum/backup-psql-docker";
config = {
Cmd = [ "${app}/bin/backup-psql" ];
};
}