This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git


The following commit(s) were added to refs/heads/main by this push:
     new 52f7545bb minor: fix kube/Dockerfile build failed (#1918)
52f7545bb is described below

commit 52f7545bbe14b4cdf1389f709d537565ef83c8a9
Author: Zhang Xiaofeng <zhangxf...@gmail.com>
AuthorDate: Tue Jun 24 02:39:05 2025 +0800

    minor: fix kube/Dockerfile build failed (#1918)
    
    Co-authored-by: Xiaofeng Zhang <xiaofeng.zh...@bytedance.com>
---
 kube/Dockerfile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/kube/Dockerfile b/kube/Dockerfile
index 809447faa..6c6be5d75 100644
--- a/kube/Dockerfile
+++ b/kube/Dockerfile
@@ -25,6 +25,15 @@ RUN apt update \
     && apt install -y openjdk-11-jdk \
     && apt clean
 
+RUN apt install -y gcc-10 g++-10 cpp-10 unzip
+ENV CC="gcc-10"
+ENV CXX="g++-10"
+
+RUN PB_REL="https://github.com/protocolbuffers/protobuf/releases"; \
+    && curl -LO $PB_REL/download/v30.2/protoc-30.2-linux-x86_64.zip \
+    && unzip protoc-30.2-linux-x86_64.zip -d /root/.local
+ENV PATH="$PATH:/root/.local/bin"
+
 RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
 ENV PATH="/root/.cargo/bin:${PATH}"
 ENV RUSTFLAGS="-C debuginfo=line-tables-only -C incremental=false"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org
For additional commands, e-mail: commits-h...@datafusion.apache.org

Reply via email to