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 5ded9b3 commit 75a53f5Copy full SHA for 75a53f5
dev/release/comet-rm/Dockerfile
@@ -48,6 +48,14 @@ RUN export LC_ALL=C \
48
libbz2-dev \
49
zlib1g-dev
50
51
+RUN apt install -y gcc-10 g++-10 cpp-10 unzip
52
+ENV CC="gcc-10"
53
+ENV CXX="g++-10"
54
+
55
+RUN PB_REL="https://github.com/protocolbuffers/protobuf/releases" \
56
+ && curl -LO $PB_REL/download/v30.2/protoc-30.2-linux-x86_64.zip \
57
+ && unzip protoc-30.2-linux-x86_64.zip -d /root/.local
58
+ENV PATH="$PATH:/root/.local/bin"
59
60
# Install rust
61
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
0 commit comments