From 220fdba52af48b454f4dc0534c1745ccd03dc674 Mon Sep 17 00:00:00 2001 From: benpicco Date: Thu, 12 Sep 2019 13:09:29 +0200 Subject: [PATCH] Dockerfile: install protobuf-compiler via apt package manager When using the nanopb package, a version of protoc is needed to generate .c and header files from the protobuf definitions. This adds protoc to riotdocker. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 01043313..22355cce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,6 +61,7 @@ RUN \ m4 \ parallel \ pcregrep \ + protobuf-compiler \ python \ python3 \ python3-dev \