This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
build-push-action/test/proxy.Dockerfile

10 lines
315 B
Docker
Raw Normal View History

2025-06-05 13:09:30 +08:00
# syntax=docker/dockerfile:1
FROM alpine
RUN apk add --no-cache curl net-tools
ARG HTTP_PROXY
ARG HTTPS_PROXY
RUN printenv HTTP_PROXY
RUN printenv HTTPS_PROXY
RUN netstat -aptn
RUN curl --retry 5 --retry-all-errors --retry-delay 0 --connect-timeout 5 --proxy $HTTP_PROXY -v --insecure --head https://www.google.com