fix(rathole): install python3 for built-in health endpoint

This commit is contained in:
2025-09-12 14:27:48 -05:00
parent 11365035b8
commit e0f0a4ab56

View File

@@ -5,7 +5,7 @@ ARG ARCH=x86_64-unknown-linux-gnu
USER root USER root
RUN apt-get update \ 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/* && rm -rf /var/lib/apt/lists/*
WORKDIR /app/pkg 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 curl -fsS http://127.0.0.1:${APP_PORT}/ || exit 1
CMD ["/app/pkg/start.sh"] CMD ["/app/pkg/start.sh"]