mirror of
				https://github.com/linka-cloud/d2vm.git
				synced 2025-11-04 03:21:48 +00:00 
			
		
		
		
	Dockerfile: add missing ca-certificates run: hetzner: add token env var fix examples Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
		
			
				
	
	
		
			6 lines
		
	
	
		
			161 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			161 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ubuntu
 | 
						|
 | 
						|
RUN apt update && apt install -y openssh-server systemctl && \
 | 
						|
    systemctl enable ssh && \
 | 
						|
    echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
 |