Endava / docker-php

This is a docker php (fpm+apache2+nginx unit) image, based on the official alpine/ubuntu packages for php.
https://hub.docker.com/r/endava/php
Apache License 2.0
18 stars 6 forks source link

add `symfony`-cli (for local webserver) to all new releases #78

Open en-jschuetze opened 2 months ago

en-jschuetze commented 2 months ago

https://symfony.com/doc/current/setup/symfony_server.html

# install symfony cli
RUN wget --quiet --no-verbose 'https://dl.cloudsmith.io/public/symfony/stable/setup.deb.sh' -O /tmp/setup-symfony-cli.deb.sh \
   && bash -o pipefail /tmp/setup-symfony-cli.deb.sh \
   && rm /tmp/setup-symfony-cli.deb.sh
# give www-data it's home directory
RUN chown www-data:www-data /var/www