initial commit

This commit is contained in:
Sebastian
2025-03-06 07:33:29 +01:00
parent 8656b63553
commit 4c6bf353ae
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM python:3.11-slim
WORKDIR /app
RUN pip install flask requests
COPY proxy.py /app/
CMD ["python", "proxy.py"]