commit b7cbaa5ecdcfd516a3c132a4a5ea74f5c850487d Author: Alejandro Martinez Date: Sun Apr 12 02:50:25 2026 +0200 feat: mitmproxy for traffic interception diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..879a361 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM mitmproxy/mitmproxy:latest +EXPOSE 8888 8081 +HEALTHCHECK --interval=10s --timeout=5s --retries=10 --start-period=10s \ + CMD curl -sf http://localhost:8081/ || exit 1 +ENTRYPOINT ["mitmweb", "--web-host", "0.0.0.0", "--web-port", "8081", "-p", "8888", "--ssl-insecure", "--set", "web_open_browser=false"]