mirror of
https://github.com/sashs/Ropper
synced 2026-06-08 17:20:46 +00:00
19 lines
565 B
Docker
19 lines
565 B
Docker
# Once built, simply execute "docker container run -v /:/app/mnt -it <IMAGE ID>" to run the container and expose your host filesystem
|
|
# 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"
|
|
|
|
FROM python
|
|
|
|
LABEL MAINTAINER="oddrabbit"
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install git -y \
|
|
&& git clone https://github.com/sashs/Ropper.git \
|
|
&& cd Ropper \
|
|
&& pip3 install .
|
|
|
|
ENTRYPOINT ["python", "/app/Ropper/Ropper.py"]
|
|
|
|
CMD ["--console"]
|