From 756d746abeed9686aafa8d1448d4ecfe425ff18c Mon Sep 17 00:00:00 2001 From: adfoster-r7 Date: Thu, 3 Aug 2023 20:17:36 +0100 Subject: [PATCH] Remove python2 from docker setup --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9cbb4fa862..65d7b13cfa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,8 +61,8 @@ ENV METASPLOIT_GROUP=metasploit RUN addgroup -S $METASPLOIT_GROUP RUN apk add --no-cache bash sqlite-libs nmap nmap-scripts nmap-nselibs \ - postgresql-libs python2 python3 py3-pip ncurses libcap su-exec alpine-sdk \ - python2-dev openssl-dev nasm mingw-w64-gcc + postgresql-libs python3 py3-pip ncurses libcap su-exec alpine-sdk \ + openssl-dev nasm mingw-w64-gcc RUN /usr/sbin/setcap cap_net_raw,cap_net_bind_service=+eip $(which ruby) RUN /usr/sbin/setcap cap_net_raw,cap_net_bind_service=+eip $(which nmap) @@ -75,7 +75,7 @@ RUN chown -R root:metasploit $APP_HOME/ RUN chmod 664 $APP_HOME/Gemfile.lock RUN gem update --system RUN cp -f $APP_HOME/docker/database.yml $APP_HOME/config/database.yml -RUN curl -L -O https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py && python get-pip.py && rm get-pip.py +RUN curl -L -O https://raw.githubusercontent.com/pypa/get-pip/f84b65709d4b20221b7dbee900dbf9985a81b5d4/public/get-pip.py && python3 get-pip.py && rm get-pip.py RUN pip install impacket RUN pip install requests