You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
540 B

  1. FROM hdlc/ghdl:yosys as gatemate
  2. COPY packages/gatemate-toolchain.tar.gz /root/
  3. RUN cd /root && \
  4. tar xf gatemate-toolchain.tar.gz -C /opt/ && \
  5. rm gatemate-toolchain.tar.gz
  6. RUN apt-get update -qq && \
  7. DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
  8. iverilog && \
  9. apt-get -y upgrade && apt-get autoclean && apt-get clean && apt-get -y autoremove && \
  10. update-ca-certificates && \
  11. rm -rf /var/lib/apt/lists/*
  12. ## Enhance path variable
  13. ENV PATH "/opt/cc-toolchain-linux/bin/p_r:$PATH"