add build, run, and shell scripts

This commit is contained in:
sog 2020-04-18 09:55:50 -04:00
parent c2ed7c7e20
commit ad3e2b5e0d
3 changed files with 7 additions and 0 deletions

2
build.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
docker build -t docker-binaryexploitation:ubuntu19.10 .

3
run.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker run --rm -v "$(pwd):/pwd" --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -d --name docker-binaryexploitation -i docker-binaryexploitation:ubuntu19.10

2
shell.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
docker exec -it docker-binaryexploitation /bin/bash