Update.
CI / build (push) Failing after 1m25s
CI / test (3.12) (push) Failing after 1m47s
CI / test (3.9) (push) Failing after 1m59s
CI / test (3.10) (push) Failing after 1m59s
CI / test (3.11) (push) Failing after 2m0s
CI / lint (push) Failing after 2m2s
CI / test (3.8) (push) Failing after 2m50s

This commit is contained in:
2025-12-08 00:14:40 +01:00
parent 1c346d6314
commit d2d66192e4
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"]