Skip to content

Commit d635bd9

Browse files
committed
Add Protobuf compiler to docker images.
1 parent 7bb0810 commit d635bd9

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.docker/arm64/rust/Dockerfile.alpine

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN apk add --no-cache \
1717
openssl-dev \
1818
make \
1919
pkgconfig \
20+
protobuf \
2021
rsync
2122
RUN rustup toolchain install $TOOLCHAIN && \
2223
rustup target add wasm32-unknown-unknown && \

.docker/arm64/rust/Dockerfile.debian

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ RUN apt update && \
1616
libssl-dev \
1717
pkg-config \
1818
rsync \
19+
protobuf-compiler \
1920
-y --no-install-recommends && \
2021
apt autoremove -y && \
2122
apt clean

.docker/rust-nightly/Dockerfile.alpine

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN apk add --no-cache \
1717
openssl-dev \
1818
make \
1919
pkgconfig \
20+
protobuf \
2021
rsync
2122
RUN rustup toolchain install $TOOLCHAIN && \
2223
rustup target add wasm32-unknown-unknown --toolchain $TOOLCHAIN

.docker/rust-nightly/Dockerfile.debian

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ RUN apt update && \
1616
libssl-dev \
1717
pkg-config \
1818
rsync \
19+
protobuf-compiler \
1920
-y --no-install-recommends && \
2021
apt autoremove -y && \
2122
apt clean

0 commit comments

Comments
 (0)