initial commit

This commit is contained in:
2026-04-17 09:49:34 +02:00
commit 8553c710f2
23 changed files with 1212 additions and 0 deletions

9
proxy/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.12-slim
RUN pip install --no-cache-dir setuptools selenium websockets
WORKDIR /app
COPY main.py .
CMD ["python", "main.py"]