Update script with php/web container differences

This commit is contained in:
zeke 2024-02-04 23:34:17 -08:00
parent 64ba328c3b
commit 57a6154287
3 changed files with 19 additions and 10 deletions

View file

@ -35,10 +35,11 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
&& pecl install imagick \
&& pecl install -o -f igbinary \
&& docker-php-ext-install gd zip opcache intl pdo pdo_mysql mysqli bcmath gettext iconv mbstring curl \
&& docker-php-ext-enable igbinary redis imagick
&& docker-php-ext-enable igbinary redis imagick \
&& /code/docker/common-setup.sh \
&& cd /var/www-leftypol && composer install
RUN /code/docker/common-setup.sh
# RUN /code/docker/common-setup.sh php
WORKDIR "/var/www-leftypol"
CMD ["php-fpm"]
EXPOSE 9000