From 4b25f3084598c7ef4d86a5fdaeae8a0af820c815 Mon Sep 17 00:00:00 2001 From: Paul Walmsley Date: Tue, 29 Jun 2021 13:11:26 -0700 Subject: [PATCH] Dockerfile: add 'bc' to the list of packages to install in the test instance 'bc' is required by the build, but it's not actually listed in the dependencies. 'bc'-related errors have apparently been ignored so far --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 9bfeb3c6..21238d11 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,7 +10,8 @@ RUN apt-get update && \ apt-get install -y \ bzip2 \ rsync \ - wget + wget \ + bc # Install RISC-V Toolchain RUN wget --no-verbose ${SIFIVE_TOOLS_URL}/${RISCV_TOOLS_TARBALL} && \