From 777e511e8bc71d3d6271cc3b2df205f088ae1c44 Mon Sep 17 00:00:00 2001 From: dkulacz <64925286+dkulacz@users.noreply.github.com> Date: Tue, 9 Feb 2021 09:29:56 +0100 Subject: [PATCH] Update Dockerfile to add protobuf (#22) Update Dockerfile to add protobuf --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index 704c047..d84f4b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -153,3 +153,11 @@ RUN apt-get -y update && \ ninja-build \ python2 \ && rm -rf /var/lib/apt/lists/* + +# Protobuf support +RUN apt-get -y update && \ + apt-get -y install --no-install-recommends python3-distutils protobuf-compiler && \ + wget -q https://bootstrap.pypa.io/get-pip.py && \ + python3 get-pip.py && \ + pip3 install protobuf && \ + rm -rf get-pip.py /var/lib/apt/lists/*