This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
The following commit(s) were added to refs/heads/main by this push:
new dc199440 pin the node version (#942)
dc199440 is described below
commit dc19944003678ceaae41b9316967180fc8d1d5e3
Author: Fine0830 <[email protected]>
AuthorDate: Thu Jan 15 12:19:28 2026 +0800
pin the node version (#942)
---
mcp/Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mcp/Dockerfile b/mcp/Dockerfile
index 034e077c..e45e5ea8 100644
--- a/mcp/Dockerfile
+++ b/mcp/Dockerfile
@@ -15,7 +15,7 @@
# limitations under the License.
# Build stage
-FROM node:20-alpine AS builder
+FROM node:24.6.0-alpine AS builder
WORKDIR /app
@@ -33,7 +33,7 @@ COPY src/ ./src/
RUN npm run build
# Production stage
-FROM node:20-alpine AS final
+FROM node:24.6.0-alpine AS final
WORKDIR /app