Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
516 B
4
Indexable
FROM richarvey/nginx-php-fpm:2.0.0

COPY . .

# Image config
ENV SKIP_COMPOSER 1
ENV WEBROOT /var/www/html/public
ENV PHP_ERRORS_STDERR 1
ENV RUN_SCRIPTS 1
ENV REAL_IP_HEADER 1

# Laravel config
ENV APP_ENV local
ENV APP_DEBUG true
ENV LOG_CHANNEL stderr

# Allow composer to run as root
ENV COMPOSER_ALLOW_SUPERUSER 1
# Install dependencies with Composer
#RUN composer selfupdate --2
#RUN composer update --ignore-platform-req=ext-gd --ignore-platform-req=ext-zip --ignore-platform-req=ext-pcntl