1
0
mirror of https://github.com/fspc/biketree.git synced 2025-02-22 17:03:23 -05:00

Turns on short_open_tag in /usr/local/etc/php/php.ini

This commit is contained in:
Jonathan Rosenbaum 2017-09-05 06:58:30 +00:00
parent b833436dff
commit 13fe794f0c

View File

@ -13,4 +13,5 @@ RUN chown -R www-data:www-data /var/www/html; apk update; \
apk add php5-mysql; \ apk add php5-mysql; \
cp -a /etc/php5/* /usr/local/etc/php; \ cp -a /etc/php5/* /usr/local/etc/php; \
cp /usr/lib/php5/modules/mysql.so `php-config --extension-dir`/; \ cp /usr/lib/php5/modules/mysql.so `php-config --extension-dir`/; \
sed -i 's/short_open_tag.*$/short_open_tag = On/' /usr/local/etc/php/php.ini;