123456789101112131415161718192021222324252627282930313233 |
- FROM ubuntu:16.04
- ARG DEBIAN_FRONTEND=noninteractive
- RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /dev/null
- RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
- RUN apt-get update -yqq > /dev/null
- RUN apt-get install -yqq nginx git unzip php7.2 php7.2-common php7.2-cli php7.2-fpm php7.2-mysql > /dev/null
- RUN apt-get install -yqq php7.2-mbstring php7.2-xml > /dev/null
- RUN apt-get install -yqq composer > /dev/null
- COPY deploy/conf/* /etc/php/7.2/fpm/
- ADD ./ /laravel
- WORKDIR /laravel
- RUN mkdir -p /laravel/bootstrap/cache
- RUN mkdir -p /laravel/storage/framework/sessions
- RUN mkdir -p /laravel/storage/framework/views
- RUN mkdir -p /laravel/storage/framework/cache
- RUN chmod -R 777 /laravel
- RUN composer install --quiet
- RUN php artisan config:cache
- RUN php artisan route:cache
- RUN chmod -R 777 /laravel
- CMD service php7.2-fpm start && \
- nginx -c /laravel/deploy/nginx.conf -g "daemon off;"
|