mirror of
				https://github.com/docker/build-push-action.git
				synced 2025-11-04 08:20:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			161 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			161 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# syntax=docker/dockerfile:1
 | 
						|
FROM busybox AS base
 | 
						|
RUN echo "Hello world!" > /hello
 | 
						|
 | 
						|
FROM alpine AS build
 | 
						|
COPY --from=base /hello /hello
 | 
						|
RUN uname -a
 | 
						|
 | 
						|
FROM build
 |