Files
vllm-r9700-container/test_proxy.Dockerfile
T
2026-03-14 01:15:03 +08:00

8 lines
300 B
Docker

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"