aboutsummaryrefslogblamecommitdiff
path: root/cluster/prod/app/cryptpad/build/docker.nix
blob: 168963d6b86794b5ba39875a0f4921d428248a21 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                  
                             
  
                                      

                                
                                      

      
let
  common = import ./common.nix;
  pkgs = import common.pkgsSrc {};
  app = import ./default.nix;
in
  pkgs.dockerTools.buildLayeredImage {
    name = "superboum/cryptpad";
    config = {
      Cmd = [ "${app}/bin/cryptpad" ];
    };
 }