From 230304ccc251c1e51f8a224f8bd1aeaaeb1bed33 Mon Sep 17 00:00:00 2001 From: Bhargava Shastry Date: Sun, 29 Sep 2019 17:51:30 +0200 Subject: [PATCH] ovs: Fix build failure due to python3 upgrade (#2900) --- projects/openvswitch/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/openvswitch/Dockerfile b/projects/openvswitch/Dockerfile index 27c8911a8..b7da14101 100644 --- a/projects/openvswitch/Dockerfile +++ b/projects/openvswitch/Dockerfile @@ -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