* #5 - (php) Bump laravel/framework from 9.9.0 to 9.10.1 Bumps [laravel/framework](https://github.com/laravel/framework) from 9.9.0 to 9.10.1. - [Release notes](https://github.com/laravel/framework/releases) - [Changelog](https://github.com/laravel/framework/blob/9.x/CHANGELOG.md) - [Commits](https://github.com/laravel/framework/compare/v9.9.0...v9.10.1) --- updated-dependencies: - dependency-name: laravel/framework dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * #5 - May 2022 composer update Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
		
			
				
	
	
		
			26 lines
		
	
	
		
			553 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			553 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ghcr.io/blumilksoftware/php:8.1
 | 
						|
 | 
						|
ARG XDEBUG_VERSION=3.1.4
 | 
						|
ARG INSTALL_XDEBUG=false
 | 
						|
 | 
						|
RUN if [ ${INSTALL_XDEBUG} = true ]; then \
 | 
						|
    apk --no-cache add $PHPIZE_DEPS \
 | 
						|
    && pecl install xdebug-${XDEBUG_VERSION} \
 | 
						|
    && docker-php-ext-enable xdebug \
 | 
						|
;fi
 | 
						|
 | 
						|
RUN apk add --no-cache pcre-dev $PHPIZE_DEPS \
 | 
						|
    postgresql-dev \
 | 
						|
    zip \
 | 
						|
    libzip-dev \
 | 
						|
    libpng-dev \
 | 
						|
    && pecl install redis \
 | 
						|
    && docker-php-ext-install \
 | 
						|
    pdo_pgsql \
 | 
						|
    zip \
 | 
						|
    gd \
 | 
						|
    && docker-php-ext-configure \
 | 
						|
    zip \
 | 
						|
    && docker-php-ext-enable \
 | 
						|
    redis
 |