From f7b38154eb93106f2d9a6b9c97e34492248e1500 Mon Sep 17 00:00:00 2001 From: "Anna (Anya) Parker" <50943381+anna-parker@users.noreply.github.com> Date: Thu, 12 Sep 2024 18:07:05 +0200 Subject: [PATCH] Add zstd to the dockerimage used in silo preprocessing. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4a138f1cd..e12ce790a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ COPY docker_runtime_config.yaml ./runtime_config.yaml COPY --from=builder /src/siloApi ./ RUN apt update && apt dist-upgrade -y \ - && apt install -y libtbb12 curl jq + && apt install -y libtbb12 curl jq zstd # call /info, extract "seqeunceCount" from the JSON and assert that the value is not 0. If any of those fails, "exit 1". HEALTHCHECK --start-period=20s CMD curl --fail --silent localhost:8081/info | jq .sequenceCount | xargs test 0 -ne || exit 1