implementação do opcache

This commit is contained in:
Renan Bernordi 2024-11-28 14:32:33 -03:00
parent 7f1bf662e3
commit b85ba6d526
2 changed files with 15 additions and 2 deletions

View file

@ -9,10 +9,16 @@ RUN apt-get update && apt-get install -y \
git \
htop \
libzip-dev \
&& docker-php-ext-install zip
&& docker-php-ext-install zip opcache \
&& docker-php-ext-enable opcache
# Copia a configuração do OPCache
COPY opcache.ini /usr/local/etc/php/conf.d/opcache.ini
# Instala o Composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
# Copia a configuração do webservice
COPY default.conf /etc/nginx/sites-available/default
RUN mkdir -p /app

7
opcache.ini Normal file
View file

@ -0,0 +1,7 @@
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
opcache.enable=1