From 9c4afee9daaf6f1eda6d418bc0de71c6d9bfd7b6 Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Fri, 17 Nov 2023 12:03:09 -0800 Subject: [PATCH] build: add initcontainer tooling Adding curl and jq to the container image, so an initcontainer for galileo can query the current chain id to decide whether to wipe view db state. --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 5546db7..fb2ed2d 100644 --- a/Containerfile +++ b/Containerfile @@ -17,7 +17,7 @@ RUN cargo build --release # Runtime container, copying in built artifacts FROM docker.io/debian:bookworm-slim -RUN apt-get update && apt-get install -y ca-certificates +RUN apt-get update && apt-get install -y ca-certificates curl jq RUN groupadd --gid 1000 penumbra \ && useradd -m -d /home/penumbra -g 1000 -u 1000 penumbra COPY --from=penumbra /bin/pcli /usr/bin/pcli