From 1085bc150a2f083f1cf37c1aab795c9974159821 Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Fri, 11 Jul 2025 17:23:12 -0500 Subject: [PATCH] install cmake if running a timelord --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index d608a50..69d97b2 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -296,7 +296,7 @@ if [ -z "${service##*timelord*}" ]; then # install-timelord.sh relies on lsb-release for determining the cmake installation method, and git for building chiavdf DEBIAN_FRONTEND=noninteractive apt-get update - DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y lsb-release git + DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y cmake lsb-release git /bin/sh ./install-timelord.sh fi