refactor(gemma): Move Gemma source into monorepo stucture

This commit is contained in:
Vincent Ambo 2019-06-29 14:13:58 +01:00
parent 61be253d6b
commit 60532a541b
11 changed files with 0 additions and 0 deletions

View file

@ -1,19 +0,0 @@
with import <nixpkgs> {};
let
gemma = import ./default.nix;
entrypoint = writeScript "entrypoint.sh" ''
#!${stdenv.shell}
set -e
exec ${gemma}/bin/gemma
'';
in dockerTools.buildImage {
name = "gemma";
contents = gemma; # [ gemma ];
config = {
Entrypoint = [ entrypoint ];
WorkingDir = "/data";
Volumes = {
"/data" = {};
};
};
}