6 lines
		
	
	
		
			174 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			174 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM php:7-fpm
 | |
| WORKDIR "/application"
 | |
| RUN mkdir -p /application/core/Configuration
 | |
| RUN chown -R www-data:www-data /application
 | |
| RUN docker-php-ext-install mysqli
 | |
| USER www-data |