10 lines
505 B
Docker
10 lines
505 B
Docker
FROM registry.fedoraproject.org/fedora:43
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False --nodocs curl && dnf clean all
|
|
|
|
RUN echo "=== Test 1: Direct connection ===" && \
|
|
curl -s "https://therock-nightly-tarball.s3.amazonaws.com?list-type=2&prefix=therock-dist-linux-gfx120X-all-7" | head -50
|
|
|
|
RUN echo "=== Test 2: SOCKS5 proxy ===" && \
|
|
curl -x socks5://192.168.0.11:1080 -s "https://therock-nightly-tarball.s3.amazonaws.com?list-type=2&prefix=therock-dist-linux-gfx120X-all-7" | head -50
|