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

8 lines
327 B
Docker

FROM registry.fedoraproject.org/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"