From 28de75af325954c687a734732c5c7963955999b1 Mon Sep 17 00:00:00 2001 From: Aditya Tripathi Date: Mon, 14 Sep 2026 10:05:47 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20address=20review=20=E2=80=94=20minio=20m?= =?UTF-8?q?c=20build=20stage=20+=20settings=20sidebar=20sticky?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - docker/development/Dockerfile: the minio-client build stage pulled minio/mc:${MINIO_VERSION} from Docker Hub (now 404), which fails a clean image build; repoint to quay.io/minio/mc with the same pinned tag - shared-variables layout: drop inline xl:sticky/xl:top-26 (SettingsSidebarStickyTest forbids them); sticky positioning comes from the shared .application-settings-navigation CSS rule --- docker/development/Dockerfile | 4 +++- resources/views/components/shared-variables/layout.blade.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/development/Dockerfile b/docker/development/Dockerfile index eb4970bd8c..f3355ae151 100644 --- a/docker/development/Dockerfile +++ b/docker/development/Dockerfile @@ -14,7 +14,9 @@ ARG NGINX_VERSION=1.31.2-r1 # ================================================================= # Get MinIO client # ================================================================= -FROM minio/mc:${MINIO_VERSION} AS minio-client +# MinIO removed the mc client from Docker Hub; pull the pinned build from +# MinIO's own registry (quay.io) instead. +FROM quay.io/minio/mc:${MINIO_VERSION} AS minio-client # ================================================================= # Final Stage: Production image diff --git a/resources/views/components/shared-variables/layout.blade.php b/resources/views/components/shared-variables/layout.blade.php index c5e1ee7bd6..c27d72fa52 100644 --- a/resources/views/components/shared-variables/layout.blade.php +++ b/resources/views/components/shared-variables/layout.blade.php @@ -15,7 +15,7 @@
-