You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
	
		
		
			
				
				
					
						
						
						
							|  | ARG DISTRO=alpine:3.10
 | 
						
						
						
							|  | FROM $DISTRO
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | RUN apk add --no-cache curl bash python3 \
 | 
						
						
						
							|  |  && pip3 install radicale==2.1.12
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | COPY radicale.conf /radicale.conf
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | EXPOSE 5232/tcp
 | 
						
						
						
							|  | VOLUME ["/data"]
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | CMD radicale -f -S -C /radicale.conf
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | HEALTHCHECK CMD curl -f -L http://localhost:5232/ || exit 1
 |