mirror of
				https://github.com/Burnett01/rsync-deployments.git
				synced 2025-11-04 09:29:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			223 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			223 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ubuntu:latest
 | 
						|
 | 
						|
# Update
 | 
						|
RUN apt-get update
 | 
						|
 | 
						|
# Install packages
 | 
						|
RUN apt-get -yq install rsync openssh-client
 | 
						|
 | 
						|
# Copy entrypoint
 | 
						|
ADD entrypoint.sh /entrypoint.sh
 | 
						|
RUN chmod +x /entrypoint.sh
 | 
						|
ENTRYPOINT ["/entrypoint.sh"]
 |