chore: change for fitting new server system

This commit is contained in:
merlin
2026-03-05 14:57:08 +08:00
parent b4a18dd485
commit 8cad9e0651
4 changed files with 86 additions and 88 deletions

View File

@@ -1,14 +1,14 @@
FROM harbor.merlin.xin/mirrors/docker.io/library/docker:24.0.6-dind
# 安装 Node.js
RUN apk add --no-cache bash curl git nodejs npm
# 安装 helm CLI
RUN curl -fsSL https://get.helm.sh/helm-v3.13.2-linux-amd64.tar.gz -o helm.tar.gz \
&& tar -zxvf helm.tar.gz \
&& mv linux-amd64/helm /usr/local/bin/helm \
&& rm -rf linux-amd64 helm.tar.gz
WORKDIR /workspace
FROM registry.merlin.xin/library/docker:24.0.6-dind
# 安装 Node.js
RUN apk add --no-cache bash curl git nodejs npm
# 安装 helm CLI
RUN curl -fsSL https://get.helm.sh/helm-v3.13.2-linux-amd64.tar.gz -o helm.tar.gz \
&& tar -zxvf helm.tar.gz \
&& mv linux-amd64/helm /usr/local/bin/helm \
&& rm -rf linux-amd64 helm.tar.gz
WORKDIR /workspace
ENTRYPOINT [ "/bin/bash" ]