9 lines
		
	
	
		
			219 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			219 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| from alpine:latest
 | |
| RUN apk add --no-cache curl
 | |
| COPY crontab opt
 | |
| COPY entrypoint.sh opt
 | |
| COPY phc.sh opt
 | |
| RUN crontab /opt/crontab
 | |
| RUN chmod +x /opt/entrypoint.sh
 | |
| RUN chmod +x /opt/phc.sh
 | |
| CMD ["/opt/entrypoint.sh"] |