simple look

This commit is contained in:
Para Dox
2025-04-27 22:30:57 +07:00
parent cbfe770a1a
commit 5c63c62859
3 changed files with 41 additions and 0 deletions

11
logging-proxy/Dockerfile Normal file
View File

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