1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

protobuf: added dependencies to Dockerfiles

This commit is contained in:
Steffen Vogel 2017-10-27 18:48:09 +02:00
parent a3029d4407
commit 08a8f29117
3 changed files with 12 additions and 6 deletions

View file

@ -37,7 +37,8 @@ RUN dnf -y install \
pkgconfig make cmake \
autoconf automake autogen libtool \
flex bison \
texinfo git curl tar
texinfo git curl tar \
protobuf-compiler protobuf-c-compiler
# Several tools only needed for developement and testing
RUN dnf -y install \
@ -74,7 +75,8 @@ RUN dnf -y install \
libwebsockets-devel \
zeromq-devel \
nanomsg-devel \
libxil-devel
libxil-devel \
protobuf-c-devel
# Build & Install Criterion
COPY thirdparty/criterion /tmp/criterion

View file

@ -44,7 +44,8 @@ RUN yum -y install \
pkgconfig make cmake \
autoconf automake autogen libtool \
flex bison \
texinfo git curl tar
texinfo git curl tar \
protobuf-compiler protobuf-c-compiler
# Several tools only needed for developement and testing
RUN yum -y install \
@ -74,7 +75,8 @@ RUN yum -y install \
libnl3-devel \
zeromq-devel \
nanomsg-devel \
libxil-devel
libxil-devel \
protobuf-c-devel
# Build & Install Criterion
COPY thirdparty/criterion /tmp/criterion

View file

@ -41,7 +41,8 @@ RUN apt-get update && apt-get install -y \
autoconf automake autogen libtool \
flex bison \
texinfo \
git curl tar
git curl tar \
protobuf-compiler protobuf-c-compiler
# Several tools only needed for developement and testing
RUN apt-get update && apt-get install -y \
@ -75,7 +76,8 @@ RUN apt-get update && apt-get install -y \
libcurl4-openssl-dev \
libjansson-dev \
libzmq3-dev \
libnanomsg-dev
libnanomsg-dev \
libprotobuf-c-dev
# Build & Install Criterion
COPY thirdparty/criterion /tmp/criterion