feat: add CI workflow, Dockerfile, tests, and project scaffolding for proxy server

This commit is contained in:
2025-12-07 23:14:40 +00:00
parent 05c067c991
commit 8adaffe9f3
7 changed files with 396 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8101
CMD ["python", "proxy.py"]