Files
vllm-r9700-container/test_proxy.Dockerfile
T

8 lines
300 B
Docker
Raw Normal View History

2026-03-14 01:15:03 +08:00
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"