From 73bdd3f49f6836b045189982d7120e6587cc72c6 Mon Sep 17 00:00:00 2001 From: Eason Chen Date: Sat, 15 Aug 2026 23:56:58 +0800 Subject: [PATCH] HDDS-15977. Remove mountpoint-s3 --- Dockerfile | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3333272..bcdfd04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,6 @@ RUN set -eux ; \ bzip2 \ diffutils \ findutils \ - fuse \ jq \ krb5-workstation \ libxcrypt-compat \ @@ -43,20 +42,8 @@ RUN set -eux ; \ && ln -sf /usr/bin/python3 /usr/bin/python RUN python3 -m pip install --upgrade pip -# CSI / k8s / fuse / goofys dependency +# CSI / k8s dependency COPY --from=go /go/bin/csc /usr/bin/csc -# S3 FUSE support - mountpoint-s3 -ARG MOUNTPOINT_S3_VERSION=1.19.0 -RUN set -eux ; \ - ARCH="$(arch)"; \ - case "${ARCH}" in \ - x86_64) arch='x86_64' ;; \ - aarch64) arch='arm64' ;; \ - *) echo "Unsupported architecture: ${ARCH}"; exit 1 ;; \ - esac; \ - curl -L "https://s3.amazonaws.com/mountpoint-s3-release/${MOUNTPOINT_S3_VERSION}/${arch}/mount-s3-${MOUNTPOINT_S3_VERSION}-${arch}.rpm" -o mount-s3.rpm ; \ - dnf install -y mount-s3.rpm ; \ - rm -f mount-s3.rpm # Install rclone for smoketest ARG RCLONE_VERSION=1.69.3