diff options
author | Quentin <quentin@dufour.io> | 2024-06-24 10:15:56 +0000 |
---|---|---|
committer | Quentin <quentin@dufour.io> | 2024-06-24 10:15:56 +0000 |
commit | 9917429da3b06462969b41d511ad4daf27eaf197 (patch) | |
tree | 1a27c40a1ff9123b5552769fcf3cbb543d8dc959 /flake.nix | |
parent | e7e05ed929c92c2b9d193f8193878c1a8a74c43c (diff) | |
parent | bc7bc61f7449b1f41ed9eb46388ab0c149856f96 (diff) | |
download | guichet-main.tar.gz guichet-main.zip |
Merge pull request 'per-bucket keys' (#68) from feat-per-bucket-key into mainmain
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/guichet/pulls/68
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -12,9 +12,6 @@ system = "x86_64-linux"; overlays = [ (import "${gomod2nix}/overlay.nix") - /*(self: super: { - gomod = super.callPackage "${gomod2nix}/builder/" { }; - })*/ ]; }; src = ./.; @@ -38,10 +35,16 @@ platforms = platforms.linux; }; }; + + container = pkgs.dockerTools.buildImage { name = "dxflrs/guichet"; + copyToRoot = pkgs.buildEnv { + name = "guichet-env"; + paths = [ guichet pkgs.cacert ]; + }; config = { - Entrypoint = "${guichet}/bin/guichet"; + Entrypoint = "/bin/guichet"; }; }; in { |