mirror of https://github.com/google/oss-fuzz.git
ovs: Fix build failure due to python3 upgrade (#2900)
This commit is contained in:
parent
afd8743634
commit
230304ccc2
|
@ -17,9 +17,9 @@
|
|||
FROM gcr.io/oss-fuzz-base/base-builder
|
||||
MAINTAINER blp@ovn.org
|
||||
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
|
||||
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-fuzzing-corpus.git \
|
||||
ovs-fuzzing-corpus
|
||||
|
|
Loading…
Reference in New Issue