diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-11-07T20·46-0500 |
---|---|---|
committer | grfn <grfn@gws.fyi> | 2021-11-07T21·05+0000 |
commit | 77f0d62a2cc87e2a927e2389531b4aa16000139a (patch) | |
tree | 06a0d1caadfada2878fdaffc0dc433d874326079 /users/grfn/xanthous/server/docker.nix | |
parent | f9f5b0b199167d907a49c5f2975e6b70086796de (diff) |
feat(xanthous/server): Add derivation for docker image r/3019
This appears to work pretty nicely! Change-Id: Icf52f58225ee2837b30ba6187ae3ba3c539de9df Reviewed-on: https://cl.tvl.fyi/c/depot/+/3810 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users/grfn/xanthous/server/docker.nix')
-rw-r--r-- | users/grfn/xanthous/server/docker.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/users/grfn/xanthous/server/docker.nix b/users/grfn/xanthous/server/docker.nix new file mode 100644 index 000000000000..e6054a66d28a --- /dev/null +++ b/users/grfn/xanthous/server/docker.nix @@ -0,0 +1,21 @@ +{ depot ? import ../../../.. {} +, pkgs ? depot.third_party.nixpkgs +, ... +}: + +let + inherit (depot.users.grfn) xanthous; + xanthous-server = xanthous.server; + +in pkgs.dockerTools.buildLayeredImage { + name = "xanthous-server"; + tag = "latest"; + contents = [ xanthous xanthous-server ]; + config = { + Cmd = [ + "${xanthous-server}/bin/xanthous-server" + "--xanthous-binary-path" "${xanthous}/bin/xanthous" + ]; + }; + ci = false; +} |