update Dockerfile

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2022-08-17 12:36:09 -07:00
parent 12022edc37
commit 2b62b60ed5
1 changed files with 5 additions and 3 deletions

View File

@ -26,6 +26,9 @@ RUN wget https://cmake.org/files/v3.14/cmake-3.14.0-Linux-x86_64.sh && \
&& yum clean -y all
# Install any git version > 2.6.5
RUN yum remove -y git* && yum install -y rh-git227
RUN rm -f /usr/bin/git; ln -s /opt/rh/rh-git227/root/bin/git /usr/bin/git
RUN yum remove -y git* && yum install -y git224
# Install SWIG
@ -58,9 +61,8 @@ WORKDIR /OpenSTA
# Build
RUN mkdir build
#RUN cd buld && cmake .. -DCUDD=$HOME/cudd
RUN cd build && cmake ..
RUN make -j 8
#RUN cd buld && cmake .. -DCUDD=$HOME/cudd && make -j 8
RUN cd build && cmake .. && make -j 8
# Run sta on entry
ENTRYPOINT ["OpenSTA/app/sta"]