Skip to content

Commit

Permalink
Add docker image for hydra-chain-observer
Browse files Browse the repository at this point in the history
This will be available as a flake output and built by CI into https://github.com/orgs/cardano-scaling/packages
  • Loading branch information
ch1bo committed Feb 10, 2025
1 parent 9474c49 commit cc8f1dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
docker:
strategy:
matrix:
target: [ hydra-node, hydra-tui, hydraw ]
target: [ hydra-node, hydra-tui, hydraw, hydra-chain-observer ]

runs-on: ubuntu-latest
steps:
Expand Down
9 changes: 9 additions & 0 deletions nix/hydra/docker.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,13 @@
'')
];
};

hydra-chain-observer = pkgs.dockerTools.streamLayeredImage {
name = "hydra-chain-observer";
tag = "latest";
created = "now";
config = {
Entrypoint = [ "${hydraPackages.hydra-chain-observer-static}/bin/hydra-chain-observer" ];
};
};
}

0 comments on commit cc8f1dd

Please sign in to comment.