commit a51d8fcbb3b594d8cf5d32bd7a9b1d10ede56e33 Author: Michael Scalzetti Date: Mon Mar 14 18:17:47 2022 -0400 adding current Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0712046 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM debian:latest + +RUN apt-get update && apt-get install -y curl wget gnupg2 + +RUN curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && \ + chmod +x ./msfinstall &&\ + ./msfinstall && \ + rm ./msfinstall + +RUN useradd nroot && usermod --shell /bin/bash nroot