From d8f7c8fc19b143e12b7dadb6956a0d98cdd4a2ea Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Fri, 6 Mar 2026 00:43:49 +0700 Subject: [PATCH] fix: adjust Dockerfile to ensure proper permissions for shims after installation --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6b7e543..5946934 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ RUN curl https://mise.run | sh COPY mise.toml ${TOOLS_DIR}/config/mise.toml RUN sh -c "\ - rm -rf ${TOOLS_DIR}/shims ${TOOLS_DIR}/installs && \ - mise install \ + rm -rf ${TOOLS_DIR}/shims ${TOOLS_DIR}/installs \ + && mise install \ + && chmod 755 ${TOOLS_DIR}/shims/* \ "