From 36606ab57411054a511d414d0babcb550e7fbc5b Mon Sep 17 00:00:00 2001 From: Fern Garden Date: Sun, 7 Sep 2025 19:38:14 +0800 Subject: [PATCH] Remove utils --- Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 94ddfe9..bff352c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,16 +20,10 @@ RUN apt-get install -y \ RUN groupadd --force "${GID}" RUN useradd --create-home --no-log-init -u "${UID}" -g "${GID}" python -# Create build directory. +# Create build directory RUN mkdir /build && chown "${UID}:${GID}" /build VOLUME /build -# Add GUI ExoPlaSim configuration tool. -ADD https://github.com/OstimeusAlex/ExoPlaSim-InCon.git /utils/ - -# Add Koppen climate map tool. -ADD https://github.com/hersfeldtn/koppenpasta.git /utils/ - # Execute as python user from now on. USER python