From f70454c9a457e3e8b31cfc73899b65cac741b582 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 21 Nov 2025 00:29:42 +1100 Subject: [PATCH] fix: Add openssl to dockerfile --- Dockerfile | 2 +- tools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2417c9b..154cb7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$BUILDPLATFORM python:3.13-alpine COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ # Install curl for healthcheck -RUN apk add --no-cache curl +RUN apk add --no-cache curl openssl # Set working directory WORKDIR /app diff --git a/tools.py b/tools.py index 317da60..6c14ca4 100644 --- a/tools.py +++ b/tools.py @@ -161,7 +161,7 @@ def hip2(domain: str) -> str | None: # Catch all exceptions except Exception as e: print(f"Hip2: Lookup failed with error: {e}", flush=True) - return "Hip2: Lookup failed." + return def wallet_txt(domain: str, doh_url="https://au.hnsdoh.com/dns-query") -> str | None: