11 lines
		
	
	
		
			332 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			332 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Runs on Alpine container, latest version.
 | 
						|
FROM alpine
 | 
						|
# Copy the content to the container.
 | 
						|
COPY . /
 | 
						|
# Grant executable permission on the script.
 | 
						|
RUN ["chmod", "+x", "/entrypoint.sh"]
 | 
						|
# Update the apk and download openssh
 | 
						|
RUN ["apk", "update"]
 | 
						|
RUN ["apk", "add", "git", "openssh"]
 | 
						|
# Runs the script.
 | 
						|
ENTRYPOINT [ "/entrypoint.sh" ] |