Merge srs and convert scripts

This commit is contained in:
itdoginfo
2025-01-27 17:58:43 +03:00
parent 4e8c1950b7
commit 5284cb54f3
13 changed files with 1542 additions and 111 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM ghcr.io/sagernet/sing-box:v1.10.7 AS sing-box
FROM python:3.10.16-alpine3.21
COPY --from=sing-box /usr/local/bin/sing-box /bin/sing-box
RUN pip install --no-cache-dir tldextract
WORKDIR /app
COPY convert.py /app/convert.py
CMD ["python3", "convert.py"]