Skip to content

Commit 520ab2c

Browse files
committed
Add protobuf-compiler to crossbuild intermediate containers
Needed by #593 for prost upgrade Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com>
1 parent 7d6690a commit 520ab2c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build/containers/intermediate/Dockerfile.rust-crossbuild-amd64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ FROM rustembedded/cross:x86_64-unknown-linux-gnu-0.1.16
1414
RUN apt-get update && \
1515
apt-get install -y --no-install-recommends pkg-config \
1616
g++ ca-certificates curl libssl-dev \
17-
libv4l-dev libudev-dev
17+
libv4l-dev libudev-dev protobuf-compiler
1818

1919
# Link the container to the Akri repository
20-
LABEL org.opencontainers.image.source https://github.com/project-akri/akri
20+
LABEL org.opencontainers.image.source https://github.com/project-akri/akri

build/containers/intermediate/Dockerfile.rust-crossbuild-arm32v7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN sed -i 's/^deb h'/'deb [arch=amd64,i386] h/' /etc/apt/sources.list && \
1919
apt-get update && \
2020
apt-get install -y --no-install-recommends pkg-config:armhf \
2121
g++ ca-certificates curl libssl-dev:armhf \
22-
libv4l-dev:armhf libudev-dev:armhf
22+
libv4l-dev:armhf libudev-dev:armhf protobuf-compiler:armhf
2323

2424
# Link the container to the Akri repository
2525
LABEL org.opencontainers.image.source https://github.com/project-akri/akri

build/containers/intermediate/Dockerfile.rust-crossbuild-arm64v8

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN sed -i 's/^deb h'/'deb [arch=amd64,i386] h/' /etc/apt/sources.list && \
1919
apt-get update && \
2020
apt-get install -y --no-install-recommends pkg-config:arm64 \
2121
g++ ca-certificates curl libssl-dev:arm64 \
22-
libv4l-dev:arm64 libudev-dev:arm64
22+
libv4l-dev:arm64 libudev-dev:arm64 protobuf-compiler:arm64
2323

2424
# Link the container to the Akri repository
25-
LABEL org.opencontainers.image.source https://github.com/project-akri/akri
25+
LABEL org.opencontainers.image.source https://github.com/project-akri/akri

build/intermediate-containers.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
BUILD_RUST_CROSSBUILD_VERSION = 0.0.7
2+
BUILD_RUST_CROSSBUILD_VERSION = 0.0.8
33

44
BUILD_OPENCV_BASE_VERSION = 0.0.10
55

0 commit comments

Comments
 (0)