about summary refs log tree commit diff
path: root/services
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-09-02T21·06+0100
committerVincent Ambo <tazjin@google.com>2019-09-02T21·06+0100
commit68d14b6cfcd9b729c11ced8a9c84833d293d3875 (patch)
treed589752cf4698d97421c629e75970af18438d4a7 /services
parent8ae6cb2b9591376f0850aaa0f21e966b0391e519 (diff)
chore(gemma): Delete old image build configuration
Diffstat (limited to 'services')
-rw-r--r--services/gemma/gemma-docker.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/services/gemma/gemma-docker.nix b/services/gemma/gemma-docker.nix
deleted file mode 100644
index 69cfdd4c16..0000000000
--- a/services/gemma/gemma-docker.nix
+++ /dev/null
@@ -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" = {};
-    };
-  };
-}