FROM registry.fedoraproject.org/fedora:43 RUN dnf -y install --setopt=install_weak_deps=False --nodocs curl && dnf clean all RUN echo "=== Testing SOCKS5 ===" && \ curl -x socks5://192.168.0.11:1080 -v https://www.google.com 2>&1 | head -20 || echo "SOCKS5 FAILED" RUN echo "=== Testing HTTP ===" && \ curl -x http://192.168.0.11:1080 -v https://www.google.com 2>&1 | head -20 || echo "HTTP FAILED"