chore(gemma): Delete old image build configuration
This commit is contained in:
parent
8ae6cb2b95
commit
68d14b6cfc
1 changed files with 0 additions and 19 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…
Reference in a new issue