Files
BinexProject/compile_docker/compile.sh
2024-01-29 17:37:10 +01:00

8 lines
282 B
Bash
Executable File

set -e
find .. -maxdepth 1 -type f | xargs tar cvf parent.tar.xz
docker build -t binex_project_compiler .
docker create --name binex_project_compiler binex_project_compiler
docker cp binex_project_compiler:/home/pwn/build/vuln .
docker rm -f binex_project_compiler
rm parent.tar.xz