mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			184 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			184 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM php:7.4-fpm-alpine
 | 
						|
 | 
						|
RUN apk add --no-cache \
 | 
						|
    php7-bcmath
 | 
						|
 | 
						|
RUN docker-php-ext-install pdo pdo_mysql bcmath
 | 
						|
 | 
						|
COPY docker-compose/crontab /etc/crontabs/root
 | 
						|
 | 
						|
CMD ["crond", "-f"]
 |