From 01c90dbaa780a34bc76577de42a4e003e2de402a Mon Sep 17 00:00:00 2001 From: merlin Date: Thu, 5 Mar 2026 16:36:18 +0800 Subject: [PATCH] fix: fix error local file name --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c6c781d..9b498fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN apk add --no-cache nodejs git curl ca-certificates tar\ # rm -rf /tmp/helmfile.tar.gz /tmp/helmfile_extract # Copy the pre-downloaded helmfile tar.gz file to the image -COPY helmfile.tar.gz /tmp/helmfile.tar.gz +COPY helmfile_1.1.9_linux_amd64.tar.gz /tmp/helmfile.tar.gz RUN mkdir -p /tmp/helmfile_extract \ && tar -xzf /tmp/helmfile.tar.gz -C /tmp/helmfile_extract \ && find /tmp/helmfile_extract -type f -name helmfile -exec mv {} /usr/local/bin/helmfile \; \