mirror of
				https://github.com/Burnett01/rsync-deployments.git
				synced 2025-11-04 09:29:04 +01:00 
			
		
		
		
	Bumps alpine from 3.19.1 to 3.20.0. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.20.0
 | 
						|
MAINTAINER Dr Internet <internet@limelightgaming.net>
 | 
						|
 | 
						|
# Install RSync and Open SSH.
 | 
						|
RUN apk update && apk add --no-cache rsync openssh-client
 | 
						|
RUN rm -rf /var/cache/apk/*
 | 
						|
 | 
						|
# Prepare SSH dir.
 | 
						|
RUN mkdir ~/.ssh
 | 
						|
 | 
						|
# Copy in our executables.
 | 
						|
COPY agent-* hosts-* /bin/
 | 
						|
RUN chmod +x /bin/agent-* /bin/hosts-*
 | 
						|
 | 
						|
# Prepare for known hosts.
 | 
						|
RUN hosts-clear
 |