diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-07-19 16:00:22 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-07-19 16:00:22 +0200 |
commit | ba8042a21a8552f132cac6d0a45cf8e08d885f08 (patch) | |
tree | a248f18f48b5d540790cdb67f01af92dba41d1fe /default.nix | |
parent | 158eda06de31a52f15712fa0e5695054d15dfe3a (diff) | |
download | guichet-ba8042a21a8552f132cac6d0a45cf8e08d885f08.tar.gz guichet-ba8042a21a8552f132cac6d0a45cf8e08d885f08.zip |
Add docker entry
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/default.nix b/default.nix index cd17475..3cafd8c 100644 --- a/default.nix +++ b/default.nix @@ -38,7 +38,10 @@ in rec { cp -r templates static $out/ ''; }; - /*docker = pkgs.xxx { - - };*/ + docker = pkgs.dockerTools.buildImage { + name = "dxflrs/guichet"; + config = { + Cmd = [ "${pkg}/guichet" ]; + }; + }; } |