This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new e6be6a8493d branch-3.1: [fix](docker) update node to v14 in docker
compilation image #56029 (#57189)
e6be6a8493d is described below
commit e6be6a8493d1d8e6af4d1c20f2eb1b64914fd8fc
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Oct 30 14:36:41 2025 +0800
branch-3.1: [fix](docker) update node to v14 in docker compilation image
#56029 (#57189)
Cherry-picked from #56029
Co-authored-by: Mingyu Chen (Rayner) <[email protected]>
---
docker/compilation/Dockerfile | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docker/compilation/Dockerfile b/docker/compilation/Dockerfile
index 4290291c1da..84de00c7c46 100644
--- a/docker/compilation/Dockerfile
+++ b/docker/compilation/Dockerfile
@@ -42,11 +42,11 @@ RUN mkdir -p /usr/share/maven /usr/share/maven/ref \
&& ln -s /usr/share/maven/bin/mvn /usr/bin/mvn
# install nodejs
-RUN wget
https://doris-thirdparty-1308700295.cos.ap-beijing.myqcloud.com/tools/node-v12.13.0-linux-x64.tar.gz
\
- -q -O /tmp/node-v12.13.0-linux-x64.tar.gz \
- && cd /tmp/ && tar -xf node-v12.13.0-linux-x64.tar.gz \
- && cp -r node-v12.13.0-linux-x64/* /usr/local/ \
- && rm /tmp/node-v12.13.0-linux-x64.tar.gz && rm -rf node-v12.13.0-linux-x64
+RUN wget
https://nodejs.org/download/release/latest-v14.x/node-v14.21.3-linux-x64.tar.gz
\
+ -q -O /tmp/node-v14.21.3-linux-x64.tar.gz \
+ && cd /tmp/ && tar -xf node-v14.21.3-linux-x64.tar.gz \
+ && cp -r node-v14.21.3-linux-x64/* /usr/local/ \
+ && rm /tmp/node-v14.21.3-linux-x64.tar.gz && rm -rf node-v14.21.3-linux-x64
# install jdk17
RUN wget
https://doris-thirdparty-1308700295.cos.ap-beijing.myqcloud.com/tools/openjdk-17.0.2_linux-x64_bin.tar.gz
\
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]