Atualizar Dockerfile

This commit is contained in:
2025-11-09 22:09:11 +00:00
parent bf3ca65fe9
commit 67264f8a6f

View File

@@ -4,7 +4,7 @@ ENV TZ=America/Sao_Paulo
RUN a2enmod rewrite RUN a2enmod rewrite
# Dependências + extensões PHP + Redis # Dependências + extensões PHP (sem Redis)
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
libicu-dev \ libicu-dev \
libzip-dev \ libzip-dev \
@@ -16,7 +16,6 @@ RUN apt-get update && apt-get install -y \
zip \ zip \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \ && docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install intl zip pdo pdo_mysql gd opcache \ && docker-php-ext-install intl zip pdo pdo_mysql gd opcache \
&& pecl install redis && docker-php-ext-enable redis \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*