From 87b43e211ab5d3ab677cd159747c85c94e23cf59 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 15 Feb 2026 16:37:51 +0100 Subject: [PATCH] fix: install PySocks in container image All plugins importing derp.http failed to load because PySocks was missing from the container. Add it alongside maxminddb. Co-Authored-By: Claude Opus 4.6 --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index f2a60d0..b72b981 100644 --- a/Containerfile +++ b/Containerfile @@ -2,7 +2,7 @@ FROM python:3.13-alpine WORKDIR /app -RUN pip install --no-cache-dir maxminddb>=2.0 +RUN pip install --no-cache-dir maxminddb>=2.0 PySocks>=1.7.1 ENV PYTHONPATH=/app/src ENTRYPOINT ["python", "-m", "derp"]