From d40be7f245da77cb32ec8686ea6211bda986e612 Mon Sep 17 00:00:00 2001 From: Jeff Zignego Date: Sun, 16 Feb 2020 16:50:14 -0600 Subject: [PATCH] Install python in Docker image also --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0c1e23b..fc9ed50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ RUN mkdir ~/pkg ~/pkgs ~/logs RUN apt-get update && apt-get install apt-file -y && apt-file update # install "exploitable" GDB script -RUN apt-get update && apt-get install gdb python-setuptools -y +RUN apt-get update && apt-get install gdb python python-setuptools -y RUN wget -O- 'https://github.com/jfoote/exploitable/archive/master.tar.gz' | tar zxvf - && cd exploitable-master && python setup.py install RUN mkdir ~/fuzz-results ~/pkgs-coverage