File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ RUN docker-php-ext-install zip pdo_mysql
21
21
# RUN pecl install -o -f xdebug-3.1.3 \
22
22
# && rm -rf /tmp/pear
23
23
24
- # Copy composer
24
+ # Copy composer installable
25
25
COPY ./install-composer.sh ./
26
26
27
27
# Copy php.ini
@@ -41,5 +41,6 @@ WORKDIR /var/www
41
41
# Change the owner of the container document root
42
42
RUN chown -R www-data:www-data /var/www
43
43
44
+ # Start Apache in foreground
44
45
CMD ["apache2-foreground" ]
45
46
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
-
4
3
php -r " copy('https://getcomposer.org/installer', 'composer-setup.php');"
5
4
SIGNATURE=$( php -r " echo hash_file('SHA384', 'composer-setup.php');" )
6
5
EXPECTED_SIGNATURE=$( wget -q -O - https://composer.github.io/installer.sig)
You can’t perform that action at this time.
0 commit comments