Add files via upload

This commit is contained in:
Evgeniy
2025-01-31 23:43:04 +03:00
committed by GitHub
parent 805076e2c6
commit c9c5614f56
10 changed files with 983 additions and 0 deletions

13
proxy/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.11-slim-bookworm
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
EXPOSE 5009
COPY . .
CMD [ "python", "app.py" ]