Update Compiler

This commit is contained in:
servdal
2025-07-17 07:41:21 +07:00
parent cd3f9f1628
commit 8289968849
4 changed files with 50 additions and 3 deletions

View File

@@ -23,6 +23,7 @@ RUN apt-get update && apt-get install -y \
libtool \
libsqlite3-dev \
mariadb-client \
libpq-dev \
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
&& docker-php-ext-install \
dom \
@@ -38,6 +39,8 @@ RUN apt-get update && apt-get install -y \
pcntl \
pdo_mysql \
pdo_sqlite \
pdo_pgsql \
pgsql \
posix \
shmop \
simplexml \
@@ -60,7 +63,7 @@ WORKDIR /var/www/html
# RUN composer create-project laravel/laravel:^10 /var/www/html
# Set permission
# RUN chown -R www-data:www-data /var/www/html/htdocs/storage /var/www/html/htdocs/bootstrap/cache
RUN chown -R www-data:www-data /var/www/html/storage /var/www/html/bootstrap/cache
EXPOSE 9000
#CMD ["php-fpm"]