From 83d151f0148b27cdd5ee0081d35b7afd5743e46d Mon Sep 17 00:00:00 2001 From: SZCJW <792430652@qq.com> Date: Sat, 14 Mar 2026 01:15:03 +0800 Subject: [PATCH] x --- test_proxy.Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test_proxy.Dockerfile diff --git a/test_proxy.Dockerfile b/test_proxy.Dockerfile new file mode 100644 index 0000000..10932e9 --- /dev/null +++ b/test_proxy.Dockerfile @@ -0,0 +1,7 @@ +FROM fedora:43 + +RUN dnf -y install --setopt=install_weak_deps=False --nodocs proxychains curl && dnf clean all + +COPY proxychains4.conf /etc/proxychains.conf + +RUN proxychains curl -s https://www.google.com -o /dev/null && echo "SUCCESS: proxychains works!" || echo "FAILED: proxychains does not work"