Skip to content

Commit 6e74dcb

Browse files
committed
Add a Dockerfile for easily running the benchmarks
1 parent 7dcc42d commit 6e74dcb

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

benchmarks/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM eclipse-temurin:21-jdk
2+
RUN apt update
3+
RUN apt install build-essential cmake libz3-dev git python3 -y
4+
WORKDIR /app
5+
RUN git config --global url."https://github.com/".insteadOf git@github.com:
6+
RUN git clone --recursive https://github.com/TOPLLab/MIO.git -b verder
7+
WORKDIR /app/MIO
8+
RUN ./gradlew setup
9+
WORKDIR /app/MIO/benchmarks
10+
CMD ["python3", "test.py"]

0 commit comments

Comments
 (0)