From fe142f878c8c11488d9383ebc4c7114cf0c49ada Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Sun, 2 Dec 2018 02:18:29 +0800 Subject: [PATCH] Add python2 for unicorn --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7678ac5..1b4dae7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,11 +30,14 @@ RUN wget -O /tmp/pandoc.tar.gz \ && tar -xvf /tmp/pandoc.tar.gz --strip=1 -C /usr/local \ && rm /tmp/pandoc.tar.gz -RUN pip3 install \ +RUN apk add --no-cache \ + python2 \ + && pip3 install \ pwntools \ requests \ python-lzo \ crcmod +# python2 for unicorn # lzo-dev, python-lzo and crcmod for ubidump.py RUN git clone https://github.com/bwall/HashPump.git \