We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfbe95e commit e117fe2Copy full SHA for e117fe2
Dockerfile
@@ -30,11 +30,18 @@ RUN apt-get update && apt-get install -y \
30
automake \
31
autoconf \
32
libtool \
33
- protobuf-compiler \
34
libprotobuf-dev \
+ unzip \
35
--no-install-recommends && \
36
rm -rf /var/lib/apt/lists/*
37
38
+# Install a more recent release of protoc (protobuf-compiler in jammy is 4 years old and misses some features)
39
+RUN cd /tmp && \
40
+ curl -sSL https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-linux-x86_64.zip -o protoc.zip && \
41
+ unzip protoc.zip && \
42
+ cp bin/protoc /usr/bin/protoc && \
43
+ rm -rf *
44
+
45
# Install rust using rustup
46
ARG CHANNEL
47
ENV RUSTUP_VER="1.26.0" \
0 commit comments