infrastructure/app/cryptpad/build/docker.nix

12 lines
236 B
Nix
Raw Normal View History

2022-05-05 15:45:15 +00:00
let
common = import ./common.nix;
app = import ./default.nix;
pkgs = import common.pkgsSrc {};
in
pkgs.dockerTools.buildImage {
name = "superboum/cryptpad";
config = {
Cmd = [ "${app}/bin/backup-psql" ];
};
}