Browse Source

Add icarus verilog to gatemate docker image

master
T. Meissner 1 year ago
parent
commit
dbd318c85d
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      gatemate.Dockerfile

+ 7
- 0
gatemate.Dockerfile View File

@ -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"

Loading…
Cancel
Save