summaryrefslogtreecommitdiffstats
path: root/tools/pwn-docker/Makefile
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-02-14 22:07:16 -0500
committerMalfurious <m@lfurio.us>2024-02-14 22:07:16 -0500
commitb70b491314e5e0fc36372608ab952fba5e0fdb8d (patch)
treea795d6377eee848033ce7e3467df478b6bfb8ec7 /tools/pwn-docker/Makefile
parent4b93dc36dc685e4dcddd9753eb9570feca4cfe40 (diff)
downloadlib-des-gnux-b70b491314e5e0fc36372608ab952fba5e0fdb8d.tar.gz
lib-des-gnux-b70b491314e5e0fc36372608ab952fba5e0fdb8d.zip
Add pwn Docker image
Intended to provide a base environment for working with binary exploitation challenges and enable process isolation of said binaries. Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'tools/pwn-docker/Makefile')
-rw-r--r--tools/pwn-docker/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/pwn-docker/Makefile b/tools/pwn-docker/Makefile
new file mode 100644
index 0000000..78c320e
--- /dev/null
+++ b/tools/pwn-docker/Makefile
@@ -0,0 +1,9 @@
+# Run via `scuba --image pwn-docker [<cmd>]`
+
+.PHONY: all quick
+
+all:
+ docker build --tag pwn-docker --no-cache --pull .
+
+quick:
+ docker build --tag pwn-docker .