ovs: Fix build failure due to python3 upgrade (#2900)

This commit is contained in:
Bhargava Shastry 2019-09-29 17:51:30 +02:00 committed by Abhishek Arya
parent afd8743634
commit 230304ccc2
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@
FROM gcr.io/oss-fuzz-base/base-builder FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER blp@ovn.org MAINTAINER blp@ovn.org
RUN apt-get update && apt-get install -y make autoconf automake \ RUN apt-get update && apt-get install -y make autoconf automake \
libtool python python-pip \ libtool python python3-pip \
libz-dev libssl-dev libssl1.0.0 wget libz-dev libssl-dev libssl1.0.0 wget
RUN pip install six RUN pip3 install six
RUN git clone --depth 1 https://github.com/openvswitch/ovs.git openvswitch RUN git clone --depth 1 https://github.com/openvswitch/ovs.git openvswitch
RUN git clone --depth 1 https://github.com/openvswitch/ovs-fuzzing-corpus.git \ RUN git clone --depth 1 https://github.com/openvswitch/ovs-fuzzing-corpus.git \
ovs-fuzzing-corpus ovs-fuzzing-corpus