mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 14:40:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			182 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			182 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.5
 | 
						|
 | 
						|
RUN \
 | 
						|
  apk update && apk upgrade && \
 | 
						|
  apk add --no-cache \
 | 
						|
    curl \
 | 
						|
    e2fsprogs \
 | 
						|
    jq \
 | 
						|
    python3 \
 | 
						|
    syslinux \
 | 
						|
  && true
 | 
						|
 | 
						|
RUN pip3 install -U awscli
 |