Update to Laravel 5.8
This commit is contained in:
@@ -3,10 +3,14 @@ FROM php:7.3-fpm
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y libgmp-dev
|
||||
|
||||
# Copy any config files in
|
||||
COPY ext-opcache.ini $PHP_INI_DIR/conf.d/
|
||||
|
||||
RUN ln -sf /dev/stderr /var/log/fpm-error.log
|
||||
|
||||
RUN docker-php-ext-install \
|
||||
mysqli \
|
||||
pdo \
|
||||
pdo_mysql \
|
||||
gmp
|
||||
gmp \
|
||||
opcache
|
||||
|
||||
8
docker/php/ext-opcache.ini
Normal file
8
docker/php/ext-opcache.ini
Normal file
@@ -0,0 +1,8 @@
|
||||
[opcache]
|
||||
opcache.enable = 1
|
||||
opcache.memory_consumption = 128
|
||||
opcache.interned_strings_buffer = 8
|
||||
opcache.max_accelerated_files = 4000
|
||||
opcache.revalidate_freq = 60
|
||||
opcache.fast_shutdown = 1
|
||||
opcache.enable_cli = 1
|
||||
Reference in New Issue
Block a user