10 lines
		
	
	
		
			235 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			235 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# https://hub.docker.com/_/alpine
 | 
						|
# https://endoflife.date/alpine
 | 
						|
FROM alpine:3.18
 | 
						|
 | 
						|
RUN apk update && \
 | 
						|
  apk add --no-cache nano mc micro rsync ncdu git curl openssh-client
 | 
						|
COPY ./bin/ /usr/local/bin
 | 
						|
 | 
						|
ENTRYPOINT ["sleep", "infinity"]
 |