Package depot's gemma as a docker image for Cloud Run

Using <depot>'s gemma project with `dockerTools.buildLayeredImage` because I
need access to a nix-packaged server and gemma is the first thing that comes to
mind.
This commit is contained in:
William Carroll 2020-01-28 16:47:35 +00:00
parent bacaa0ca8a
commit ff06ffcf9c
2 changed files with 34 additions and 4 deletions

View file

@ -1,9 +1,18 @@
# Attempting to build a Docker image with Nix to run using Google Cloud Run.
{ pkgs ? import <nixpkgs> {}, ... }:
{
pkgs ? import <nixpkgs> {},
depot ? import <depot> {},
...
}:
pkgs.dockerTools.buildLayeredImage {
name = "mysql";
name = "gemma";
tag = "latest";
config.Cmd = [ "${pkgs.mysql}/bin/mysqld" ];
config.ExposedPorts = {
"4242" = {};
};
config.Env = [
"GEMMA_CONFIG=${./config.lisp}"
];
config.Cmd = [ "${depot.fun.gemma}/bin/gemma" ];
maxLayers = 120;
}