chore(gemma): Delete old image build configuration

This commit is contained in:
Vincent Ambo 2019-09-02 22:06:55 +01:00
parent 8ae6cb2b95
commit 68d14b6cfc

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" = {};
};
};
}