slfan1989 commented on code in PR #1418:
URL: https://github.com/apache/auron/pull/1418#discussion_r2416955817


##########
dev/docker-build/debian11/Dockerfile:
##########
@@ -0,0 +1,77 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# ---------------------------------------------------------------------
+# Apache Auron build environment on Debian 11
+# ---------------------------------------------------------------------
+FROM debian:11
+
+LABEL maintainer="Apache Auron Team"
+LABEL description="Debian 11 build environment for Auron project"
+
+# ---------------------------------------------------------------------
+# Environment setup
+# ---------------------------------------------------------------------
+ENV LANG=en_US.UTF-8
+ENV LC_ALL=en_US.UTF-8
+ENV TZ=UTC
+ENV DEBIAN_FRONTEND=noninteractive
+
+# ---------------------------------------------------------------------
+# Update system and install basic packages
+# ---------------------------------------------------------------------
+RUN apt-get update -y && \
+    apt-get install -y --no-install-recommends \
+      build-essential \
+      software-properties-common \
+      curl wget git unzip zip \
+      pkg-config \
+      ca-certificates openssl libssl-dev zlib1g-dev && \
+    rm -rf /var/lib/apt/lists/*
+
+# ---------------------------------------------------------------------
+# Verify GCC / G++
+# ---------------------------------------------------------------------
+RUN gcc --version && g++ --version
+
+# ---------------------------------------------------------------------
+# Install Rust (nightly toolchain)
+# ---------------------------------------------------------------------
+RUN curl https://sh.rustup.rs -sSf -o rustup-init && \
+    chmod +x rustup-init && \
+    ./rustup-init -y --default-toolchain 
nightly-2023-08-01-x86_64-unknown-linux-gnu && \

Review Comment:
   Thank you for the explanation! I will try upgrading the plugin to the 
`2025-05-09` version.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to