1
0
Fork 0

Add python2 for unicorn
continuous-integration/drone/push Build is failing Details

master
Ambrose Chua 2018-12-02 02:18:29 +08:00 committed by GitHub
parent cef8ccee03
commit fe142f878c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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 \