From dbd318c85db6ea814c7a07b63a527478c663262d Mon Sep 17 00:00:00 2001 From: tmeissner Date: Fri, 3 Feb 2023 12:50:24 +0100 Subject: [PATCH] Add icarus verilog to gatemate docker image --- gatemate.Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gatemate.Dockerfile b/gatemate.Dockerfile index 5eee84d..852b8e2 100644 --- a/gatemate.Dockerfile +++ b/gatemate.Dockerfile @@ -5,5 +5,12 @@ RUN cd /root && \ tar xf gatemate-toolchain.tar.gz -C /opt/ && \ rm gatemate-toolchain.tar.gz +RUN apt-get update -qq && \ + DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \ + iverilog && \ + apt-get -y upgrade && apt-get autoclean && apt-get clean && apt-get -y autoremove && \ + update-ca-certificates && \ + rm -rf /var/lib/apt/lists/* + ## Enhance path variable ENV PATH "/opt/cc-toolchain-linux/bin/p_r:$PATH"