about summary refs log blame commit diff
path: root/users/wpcarro/playbooks/nix_gcr/cloud_run.nix
blob: 1f473b5f59fa74504f958641ac510ff21e181c85 (plain) (tree)
1
2
3
4
5
6
7
                     

                                    
                 
                 
                         
                 




                                                  

                  
{ pkgs, depot, ... }:

pkgs.dockerTools.buildLayeredImage {
  name = "gemma";
  tag = "latest";
  config.ExposedPorts = {
    "4242" = { };
  };
  config.Env = [
    "GEMMA_CONFIG=${./config.lisp}"
  ];
  config.Cmd = [ "${depot.fun.gemma}/bin/gemma" ];
  maxLayers = 120;
}