From e58bc578cd122ea423c55c37c90e6bf90c7bc866 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Sat, 13 Jul 2024 18:52:00 -0700 Subject: [PATCH] client: Dockerfiles: ubuntu: fix botan dependency - The library is needed, not the utility binary - Fixes `root` loading errors about missing headers --- client/Dockerfiles/finance/ubuntu/Dockerfile.root.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfiles/finance/ubuntu/Dockerfile.root.in b/client/Dockerfiles/finance/ubuntu/Dockerfile.root.in index f6aec55..1fcefe1 100644 --- a/client/Dockerfiles/finance/ubuntu/Dockerfile.root.in +++ b/client/Dockerfiles/finance/ubuntu/Dockerfile.root.in @@ -62,9 +62,9 @@ RUN echo "export PATH=\"\$PATH::/usr/local/src/root/bin\"" | tee -a ~/.bash_alia # docker-finance USER root RUN apt-get install -y \ - botan \ googletest \ libbenchmark-dev \ + libbotan-2-dev \ libcrypto++-dev \ libsodium-dev