refactor(gemma): Move Gemma source into monorepo stucture
This commit is contained in:
parent
61be253d6b
commit
60532a541b
11 changed files with 0 additions and 0 deletions
|
|
@ -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" = {};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue