7 lines
375 B
Docker
7 lines
375 B
Docker
FROM registry.fedoraproject.org/fedora:43
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False --nodocs curl && dnf clean all
|
|
|
|
RUN curl -x socks5://192.168.0.11:1080 -s https://www.google.com -o /dev/null && echo "SOCKS5 SUCCESS" || echo "SOCKS5 FAILED"
|
|
RUN curl -x http://192.168.0.11:1080 -s https://www.google.com -o /dev/null && echo "HTTP SUCCESS" || echo "HTTP FAILED"
|