mirror of
				https://github.com/peterbourgon/runsvinit.git
				synced 2025-10-23 19:00:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			275 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			275 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:latest
 | |
| RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >>/etc/apk/repositories && \
 | |
|     apk add --update runit && \
 | |
|     rm -rf /var/cache/apk/*
 | |
| 
 | |
| COPY zombie /
 | |
| RUN mkdir -p /etc/service/zombie
 | |
| COPY run-zombie /etc/service/zombie/run
 | |
| 
 | |
| COPY /runsvinit /
 | |
| 
 |