Enable HTTP requests

This commit is contained in:
Andrei Condurachi 2020-11-19 12:14:00 +02:00
parent 244aaec6be
commit e3a8ba9faf
1 changed files with 4 additions and 1 deletions

View File

@ -44,7 +44,7 @@ RUN { \
} > /usr/local/etc/php/conf.d/php-recommended.ini } > /usr/local/etc/php/conf.d/php-recommended.ini
RUN pecl install apcu \ RUN pecl install apcu \
&& pecl install yaml-2.0.4 \ && pecl install yaml-2.1.0 \
&& docker-php-ext-enable apcu yaml && docker-php-ext-enable apcu yaml
# Set user to www-data # Set user to www-data
@ -64,6 +64,9 @@ RUN curl -o grav-admin.zip -SL https://getgrav.org/download/core/grav-admin/${GR
# Create cron job for Grav maintenance scripts # Create cron job for Grav maintenance scripts
RUN (crontab -l; echo "* * * * * cd /var/www/html;/usr/local/bin/php bin/grav scheduler 1>> /dev/null 2>&1") | crontab - RUN (crontab -l; echo "* * * * * cd /var/www/html;/usr/local/bin/php bin/grav scheduler 1>> /dev/null 2>&1") | crontab -
# Accept incoming HTTP requests
EXPOSE 80/tcp
# Return to root user # Return to root user
USER root USER root