We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b1b2cd3 + edb838b commit c03cfe5Copy full SHA for c03cfe5
Dockerfile
@@ -0,0 +1,21 @@
1
+# Once built, simply execute "docker container run -v /:/app/mnt -it <IMAGE ID>" to run the container and expose your host filesystem
2
+# Or you can execute it non-interactively / directly on a file with "docker container run -v /:/app/mnt -it <IMAGE ID> -f /app/mnt/bin/bash"
3
+
4
+FROM python
5
6
+LABEL MAINTAINER "oddrabbit"
7
8
+WORKDIR /app
9
10
+RUN apt-get update \
11
+ && apt-get install git -y \
12
+ && git clone https://github.com/sashs/Ropper.git \
13
+ && cd Ropper \
14
+ && pip3 install capstone==4.0.1 \
15
+ && pip3 install filebytes==0.10.0 \
16
+ && pip3 install keystone-engine \
17
+ && python ./setup.py install
18
19
+ENTRYPOINT ["python", "/app/Ropper/Ropper.py"]
20
21
+CMD ["--console"]
0 commit comments