17 lines
		
	
	
		
			232 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			232 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:latest
 | |
| 
 | |
| RUN apk add --no-cache \
 | |
|   bash \
 | |
|   curl \
 | |
|   git \
 | |
|   jq \
 | |
|   py3-requests \
 | |
|   skopeo \
 | |
|   yq
 | |
| 
 | |
| RUN mkdir -p ~./local/bin
 | |
| 
 | |
| RUN curl https://install.abra.coopcloud.tech | bash -s
 | |
| 
 | |
| ENTRYPOINT ["/root/.local/bin/abra"]
 |