File tree Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ LABEL dockerfile_maintenance=trailofbits
7
7
8
8
ENV LANG C.UTF-8
9
9
10
- RUN apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y install python3 python3-pip git wget python
10
+ RUN apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y install python3 python3-pip git wget
11
11
12
12
# Install solc 0.4.25 and validate it
13
13
RUN wget https://github.com/ethereum/solidity/releases/download/v0.4.25/solc-static-linux \
Original file line number Diff line number Diff line change @@ -16,10 +16,7 @@ function install_mcore {
16
16
EXTRAS=" dev"
17
17
fi
18
18
19
- # Unicorn needs python2
20
- export UNICORN_QEMU_FLAGS=" --python=/usr/bin/python"
21
-
22
- pip install -I --no-binary keystone-engine -e .[$EXTRAS ] # ks can have pip install issues
19
+ pip install --no-binary keystone-engine -e .[$EXTRAS ] # ks can have pip install issues
23
20
}
24
21
25
22
function install_cc_env {
@@ -46,3 +43,4 @@ if [ "$1" != "env" ]; then
46
43
install_mcore $1
47
44
fi
48
45
fi
46
+
Original file line number Diff line number Diff line change @@ -14,11 +14,7 @@ def rtd_dependent_deps():
14
14
15
15
# If you update native_deps please update the `REQUIREMENTS_TO_IMPORTS` dict in `utils/install_helper.py`
16
16
# (we need to know how to import a given native dependency so we can check if native dependencies are installed)
17
- native_deps = [
18
- "capstone==4.0.1" ,
19
- "pyelftools" ,
20
- "unicorn @ git+https://github.com/unicorn-engine/unicorn.git@778171fc9546c1fc3d1341ff1151eab379848ea0#subdirectory=bindings/python&egg=unicorn-1.0.1.post0" ,
21
- ]
17
+ native_deps = ["capstone==4.0.1" , "pyelftools" , "unicorn" ]
22
18
23
19
extra_require = {
24
20
"native" : native_deps ,
You can’t perform that action at this time.
0 commit comments