Skip to content

Commit

Permalink
Add docker image for hydra-chain-observer (#1831)
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

---

* [x] CHANGELOG update not needed
* [x] Documentation update not needed
* [x] Haddocks update not needed
* [x] No new TODOs introduced
  • Loading branch information
noonio authored Feb 10, 2025
2 parents 51296f5 + cc8f1dd commit 6b11f5f
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 6b11f5f

Please sign in to comment.