Skip to content

Commit

Permalink
chore: add more utils to docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
douglaz committed Sep 5, 2024
1 parent de0eced commit 85b080e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions nix/flakebox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,8 @@ rec {
pkgs.coreutils
pkgs.sqlite
pkgs.fakeNss
pkgs.busybox
pkgs.curl
];
config = {
Cmd = [ ]; # entrypoint will handle empty vs non-empty cmd
Expand All @@ -632,7 +634,7 @@ rec {

fedimint-cli = pkgs.dockerTools.buildLayeredImage {
name = "fedimint-cli";
contents = [ fedimint-pkgs pkgs.bash pkgs.coreutils pkgs.sqlite pkgs.fakeNss ];
contents = [ fedimint-pkgs pkgs.bash pkgs.coreutils pkgs.sqlite pkgs.fakeNss pkgs.busybox pkgs.curl ];
config = {
Cmd = [
"${fedimint-pkgs}/bin/fedimint-cli"
Expand All @@ -642,7 +644,7 @@ rec {

gatewayd = pkgs.dockerTools.buildLayeredImage {
name = "gatewayd";
contents = [ gateway-pkgs pkgs.bash pkgs.coreutils pkgs.sqlite pkgs.fakeNss ];
contents = [ gateway-pkgs pkgs.bash pkgs.coreutils pkgs.sqlite pkgs.fakeNss pkgs.busybox pkgs.curl ];
config = {
Cmd = [
"${gateway-pkgs}/bin/gatewayd"
Expand All @@ -652,7 +654,7 @@ rec {

gateway-cli = pkgs.dockerTools.buildLayeredImage {
name = "gateway-cli";
contents = [ gateway-pkgs pkgs.bash pkgs.coreutils pkgs.sqlite pkgs.fakeNss ];
contents = [ gateway-pkgs pkgs.bash pkgs.coreutils pkgs.sqlite pkgs.fakeNss pkgs.busybox pkgs.curl ];
config = {
Cmd = [
"${gateway-pkgs}/bin/gateway-cli"
Expand All @@ -672,6 +674,8 @@ rec {
pkgs.bash
pkgs.coreutils
pkgs.sqlite
pkgs.busybox
pkgs.curl
];
config = {
Cmd = [
Expand Down

0 comments on commit 85b080e

Please sign in to comment.