From e0f0a4ab562cb79171a10c14ea042065828125af Mon Sep 17 00:00:00 2001 From: ReachableCEO Date: Fri, 12 Sep 2025 14:27:48 -0500 Subject: [PATCH] fix(rathole): install python3 for built-in health endpoint --- CloudronPackages/Rathole/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CloudronPackages/Rathole/Dockerfile b/CloudronPackages/Rathole/Dockerfile index da66c0b..7a8b26a 100644 --- a/CloudronPackages/Rathole/Dockerfile +++ b/CloudronPackages/Rathole/Dockerfile @@ -5,7 +5,7 @@ ARG ARCH=x86_64-unknown-linux-gnu USER root RUN apt-get update \ - && apt-get install -y --no-install-recommends curl ca-certificates tar \ + && apt-get install -y --no-install-recommends curl ca-certificates tar python3 \ && rm -rf /var/lib/apt/lists/* WORKDIR /app/pkg @@ -40,4 +40,3 @@ HEALTHCHECK --interval=30s --timeout=5s --start-period=20s --retries=3 \ CMD curl -fsS http://127.0.0.1:${APP_PORT}/ || exit 1 CMD ["/app/pkg/start.sh"] -