From a8c1bb384032d3a5eeb6bf0d608a6dbe6ff652b5 Mon Sep 17 00:00:00 2001 From: Weili An Date: Fri, 23 Aug 2024 13:35:50 -0400 Subject: [PATCH] sst-integration: ignore user input for apt install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5f43a44..b319e39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN git clone https://github.com/llvm/llvm-project.git \ && cd .. && cd .. # Build RISCV GNU Toolchain 2024.08.06.nightly -RUN apt-get install autoconf automake autotools-dev curl python3 python3-pip libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake libglib2.0-dev libslirp-dev +RUN apt-get -y install autoconf automake autotools-dev curl python3 python3-pip libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake libglib2.0-dev libslirp-dev RUN git clone https://github.com/riscv-collab/riscv-gnu-toolchain.git \ && mkdir riscv-gnu-install \ && export RISCV_TOOLCHAIN_INSTALL_PATH=$(pwd)/riscv-gnu-install \