From 5c3b11990a0b372584a66dbc7e3e3dd78a4476ad Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Fri, 6 Mar 2026 01:11:53 +0700 Subject: [PATCH] fix: ensure directories are created for tools and config in Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6bb2352..751bebf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,8 @@ RUN apt-get update \ zstd curl git ca-certificates build-essential \ && rm -rf /var/lib/apt/lists/* +RUN mkdir -p ${TOOLS_DIR}/bin ${TOOLS_DIR}/config + # Mise environment variables ENV TOOLS_DIR="${TOOLS_DIR}" ENV MISE_DATA_DIR="${TOOLS_DIR}"