mirror of
				https://github.com/docker/build-push-action.git
				synced 2025-11-04 00:10:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# 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
 |