summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2023-03-30 02:46:43 -0400
committerdusoleil <howcansocksbereal@gmail.com>2023-03-31 22:23:34 -0400
commitde95a406075f87704ac3a884f3750d3656058891 (patch)
tree6c47c96e7a5ff33152726c3febaf7c492e0793a4 /Dockerfile
parent5b0e6af99723b362052c9f5bbba1743170848f8d (diff)
downloadsploit-de95a406075f87704ac3a884f3750d3656058891.tar.gz
sploit-de95a406075f87704ac3a884f3750d3656058891.zip
Add sploit Docker image
Signed-off-by: Malfurious <m@lfurio.us> Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..cd4f53a
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,12 @@
+FROM archlinux
+
+RUN pacman-key --init \
+ && pacman -Syyu --needed --noconfirm git netcat python python-pip radare2 \
+ && pacman -Scc --noconfirm
+
+COPY . /sploit
+RUN pip install /sploit
+
+WORKDIR /home
+ENTRYPOINT ["/sploit/docker-entry.sh"]
+CMD ["--help"]