Skip to content

Commit

Permalink
Fix download of cvc5 in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-larraz committed Jun 12, 2024
1 parent ed0cda2 commit f512d2e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ RUN wget -qq https://yices.csl.sri.com/releases/2.6.4/yices-2.6.4-x86_64-pc-linu
RUN wget -qq https://github.com/loonwerks/jkind/releases/download/v4.5.2/jkind-4.5.2.zip && unzip jkind-4.5.2.zip \
&& cp ./jkind/jkind ./jkind/*.jar /bin/ \
&& rm -rf jkind* \
&& wget -qq https://github.com/cvc5/cvc5/releases/latest/download/cvc5-Linux -O cvc5 \
&& mv cvc5 /bin/ \
&& wget -qq https://github.com/cvc5/cvc5/releases/download/cvc5-1.1.1/cvc5-Linux-static.zip && unzip cvc5-Linux-static.zip \
&& cp ./cvc5-Linux-static/bin/cvc5 /bin \
&& rm -rf cvc5-Linux-static \
&& chmod a+x /bin/cvc5 \
&& echo Success || true

Expand Down

0 comments on commit f512d2e

Please sign in to comment.