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 <noreply@anthropic.com>
This commit is contained in:
user
2026-02-15 16:37:51 +01:00
parent fd8e9f85b6
commit 87b43e211a

View File

@@ -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"]