From ec48b9d97bf4916b51f09d6a44449852226fc08a Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Fri, 22 Sep 2023 16:32:17 -0500 Subject: [PATCH] Add a few more dependencies for chiavdf --- ubuntu-22.04-risc/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu-22.04-risc/Dockerfile b/ubuntu-22.04-risc/Dockerfile index 22cd4c8..aa02a28 100644 --- a/ubuntu-22.04-risc/Dockerfile +++ b/ubuntu-22.04-risc/Dockerfile @@ -4,7 +4,7 @@ ENV PYENV_ROOT=/root/.pyenv ENV PATH="$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH" RUN apt-get update && \ - apt-get install -y build-essential curl git make libssl-dev zlib1g zlib1g-dev libreadline-dev libffi-dev && \ + apt-get install -y build-essential cmake curl git make libgmp-dev libboost-dev libssl-dev zlib1g zlib1g-dev libreadline-dev libffi-dev && \ curl https://pyenv.run | bash && \ PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install --skip-existing 3.8 && \ PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install --skip-existing 3.9 && \