dockerfiles/routersploit/Dockerfile
Jess Frazelle c07c507dc5
update plexpy and routersploit versions
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-06-11 11:57:46 -04:00

20 lines
558 B
Docker

FROM debian:sid
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
ENV ROUTERSPLOIT_VERSION v3.1.0
RUN apt-get update && apt-get install -y \
git \
python-requests \
python-paramiko \
python-pysnmp-common \
python-bs4 \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& git clone --depth 1 --branch "${ROUTERSPLOIT_VERSION}" https://github.com/reverse-shell/routersploit /usr/bin/routersploit \
&& apt-get purge -y --auto-remove \
git
WORKDIR "/usr/bin/routersploit/"
ENTRYPOINT [ "./rsf.py" ]