diff --git a/docker/csi.Dockerfile b/docker/csi.Dockerfile index 585de9d215..84c5c1cbfa 100644 --- a/docker/csi.Dockerfile +++ b/docker/csi.Dockerfile @@ -73,8 +73,8 @@ RUN apt-get update && apt-get install -y curl fuse procps iputils-ping strace ip ln -sf /root/.acl/passwd /etc/passwd && ln -sf /root/.acl/group /etc/group RUN jfs_mount_path=${JFS_MOUNT_PATH} && \ - bash -c "if [[ '${JFSCHAN}' == beta ]]; then curl -sSL https://static.juicefs.com/release/bin_pkgs/beta.tar.gz | tar -xz; jfs_mount_path=${JFS_MOUNT_PATH}.beta; \ - else curl -sSL https://static.juicefs.com/release/bin_pkgs/latest_stable_fullpkg.tar.gz | tar -xz; fi;" && \ + bash -c "if [[ '${JFSCHAN}' == beta ]]; then curl -sSL https://static.juicefs.com/release/bin_pkgs/beta_full.tar.gz | tar -xz; jfs_mount_path=${JFS_MOUNT_PATH}.beta; \ + else curl -sSL https://static.juicefs.com/release/bin_pkgs/latest_stable_full.tar.gz | tar -xz; fi;" && \ bash -c "mkdir -p /usr/local/juicefs/mount; if [[ '${TARGETARCH}' == amd64 ]]; then cp Linux/mount.ceph $jfs_mount_path; else cp Linux/mount.aarch64 $jfs_mount_path; fi;" && \ chmod +x ${jfs_mount_path} && cp juicefs.py ${JUICEFS_CLI} && chmod +x ${JUICEFS_CLI} diff --git a/docker/ee.juicefs.Dockerfile b/docker/ee.juicefs.Dockerfile index 44292eefdb..059364bb19 100644 --- a/docker/ee.juicefs.Dockerfile +++ b/docker/ee.juicefs.Dockerfile @@ -38,8 +38,8 @@ RUN apt-get update && apt-get install -y curl fuse procps iputils-ping strace ip ln -sf /root/.acl/passwd /etc/passwd && ln -sf /root/.acl/group /etc/group RUN jfs_mount_path=${JFS_MOUNT_PATH} && \ - bash -c "if [[ '${JFSCHAN}' == beta ]]; then curl -sSL https://static.juicefs.com/release/bin_pkgs/beta_fullpkg.tar.gz | tar -xz; jfs_mount_path=${JFS_MOUNT_PATH}.beta; \ - else curl -sSL https://static.juicefs.com/release/bin_pkgs/latest_stable_fullpkg.tar.gz | tar -xz; fi;" && \ + bash -c "if [[ '${JFSCHAN}' == beta ]]; then curl -sSL https://static.juicefs.com/release/bin_pkgs/beta_full.tar.gz | tar -xz; jfs_mount_path=${JFS_MOUNT_PATH}.beta; \ + else curl -sSL https://static.juicefs.com/release/bin_pkgs/latest_stable_full.tar.gz | tar -xz; fi;" && \ bash -c "mkdir -p /usr/local/juicefs/mount; if [[ '${TARGETARCH}' == amd64 ]]; then cp Linux/mount.ceph $jfs_mount_path; else cp Linux/mount.aarch64 $jfs_mount_path; fi;" && \ chmod +x ${jfs_mount_path} && cp juicefs.py ${JUICEFS_CLI} && chmod +x ${JUICEFS_CLI} diff --git a/docker/fuse/fuse.ee.juicefs.Dockerfile b/docker/fuse/fuse.ee.juicefs.Dockerfile index a0d58dbf3d..de8cec4ab9 100644 --- a/docker/fuse/fuse.ee.juicefs.Dockerfile +++ b/docker/fuse/fuse.ee.juicefs.Dockerfile @@ -24,13 +24,11 @@ RUN apt-get update && apt-get install -y curl fuse procps iputils-ping strace ip ln -sf /root/.acl/passwd /etc/passwd && ln -sf /root/.acl/group /etc/group RUN jfs_mount_path=${JFS_MOUNT_PATH} && \ - bash -c "if [[ '${JFSCHAN}' == beta ]]; then curl -sSL https://static.juicefs.com/release/bin_pkgs/beta_fullpkg.tar.gz | tar -xz; jfs_mount_path=${JFS_MOUNT_PATH}.beta; \ - else curl -sSL https://static.juicefs.com/release/bin_pkgs/latest_stable_fullpkg.tar.gz | tar -xz; fi;" && \ + bash -c "if [[ '${JFSCHAN}' == beta ]]; then curl -sSL https://static.juicefs.com/release/bin_pkgs/beta_full.tar.gz | tar -xz; jfs_mount_path=${JFS_MOUNT_PATH}.beta; \ + else curl -sSL https://static.juicefs.com/release/bin_pkgs/latest_stable_full.tar.gz | tar -xz; fi;" && \ bash -c "mkdir -p /usr/local/juicefs/mount; if [[ '${TARGETARCH}' == amd64 ]]; then cp Linux/mount.ceph $jfs_mount_path; else cp Linux/mount.aarch64 $jfs_mount_path; fi;" && \ chmod +x ${jfs_mount_path} && cp juicefs.py ${JUICEFS_CLI} && chmod +x ${JUICEFS_CLI} RUN /usr/bin/juicefs version - - ENV K8S_VERSION v1.14.8 RUN curl -o /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/${TARGETARCH}/kubectl && chmod +x /usr/local/bin/kubectl