diff --git a/Dockerfile b/Dockerfile index 4b1060a..bb50fb4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ RUN dnf -y install wget gcc-gnat diffutils RUN dnf -y install zlib-devel # Install GHDL from source RUN cd /root && wget https://github.com/ghdl/ghdl/archive/refs/tags/v3.0.0.tar.gz && tar xzf v3.0.0.tar.gz && cd ghdl-3.0.0 && ./configure && make && make install && cd /root && rm v3.0.0.tar.gz && rm -rf ghdl-3.0.0 +RUN cd /usr/local && wget https://github.com/YosysHQ/oss-cad-suite-build/releases/download/2024-01-21/oss-cad-suite-linux-x64-20240121.tgz && tar xvzf ./oss-cad-suite-linux-x64-20240121.tgz && rm ./oss-cad-suite-linux-x64-20240121.tgz ADD --chown=root:root ./python_installs.sh /root/python_installs.sh RUN chmod 700 /root/python_installs.sh RUN /root/python_installs.sh && rm /root/python_installs.sh