mirror of
				https://github.com/nmasur/dotfiles
				synced 2025-11-04 03:33:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			247 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			247 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:latest
 | 
						|
 | 
						|
COPY requirements.txt /
 | 
						|
 | 
						|
RUN apk update && \
 | 
						|
    apk add \
 | 
						|
    openssh \
 | 
						|
    python \
 | 
						|
    py-pip \
 | 
						|
    && \
 | 
						|
    pip install -r requirements.txt
 | 
						|
 | 
						|
COPY connect_cloud.sh /
 | 
						|
COPY connect_cloud.py /
 | 
						|
 | 
						|
ENTRYPOINT ["/connect_cloud.sh"]
 |