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 f64693d commit 52f7545Copy full SHA for 52f7545
kube/Dockerfile
@@ -25,6 +25,15 @@ RUN apt update \
25
&& apt install -y openjdk-11-jdk \
26
&& apt clean
27
28
+RUN apt install -y gcc-10 g++-10 cpp-10 unzip
29
+ENV CC="gcc-10"
30
+ENV CXX="g++-10"
31
+
32
+RUN PB_REL="https://github.com/protocolbuffers/protobuf/releases" \
33
+ && curl -LO $PB_REL/download/v30.2/protoc-30.2-linux-x86_64.zip \
34
+ && unzip protoc-30.2-linux-x86_64.zip -d /root/.local
35
+ENV PATH="$PATH:/root/.local/bin"
36
37
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
38
ENV PATH="/root/.cargo/bin:${PATH}"
39
ENV RUSTFLAGS="-C debuginfo=line-tables-only -C incremental=false"
0 commit comments