-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
64 lines (48 loc) · 1.6 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# Dockerfile for all the tools
#
FROM ubuntu:19.10
# Need this to add repositories
RUN apt-get update && apt-get install -y software-properties-common gnupg ca-certificates
# Extra for solidity
RUN apt-add-repository -y ppa:ethereum/ethereum
# Extra for mono
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
RUN echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | tee /etc/apt/sources.list.d/mono-official-stable.list
# Install all the dependencies
RUN apt-get update && apt-get install -y \
cmake \
g++ \
git \
make \
cvc4 libcvc4-dev \
z3 libz3-dev \
python3 python3-pip \
libssl-dev \
solc \
wget \
mono-devel \
libboost-all-dev \
time \
joe
# Install python packages
RUN pip3 install mythril psutil
WORKDIR /solc-verify-examples
# Install verisol
ADD scripts/install_verisol.sh /solc-verify-examples/scripts/
RUN /solc-verify-examples/scripts/install_verisol.sh
# Install boogie
ADD scripts/install_boogie.sh /solc-verify-examples/scripts/
RUN /solc-verify-examples/scripts/install_boogie.sh
# Install solc-verify
ADD scripts/install_solc_verify.sh /solc-verify-examples/scripts/
RUN /solc-verify-examples/scripts/install_solc_verify.sh ebf74d321e8da9db5d004df0b69a0128ebad2d00
#
# Add stuff that changes often below so that the heavy stuff above is cached on changes
#
# Update the path
ENV PATH="${PATH}:/solc-verify-examples/install/bin"
# Add the examples
ADD contracts /solc-verify-examples/contracts
# Add rest of scripts
ADD scripts /solc-verify-examples/scripts