1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- FROM ubuntu:20.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 && \
- apt-get install -yqq php7.4 php7.4-common php7.4-cgi php-curl php7.4-mysql > /dev/null
- RUN apt-get install -yqq composer > /dev/null
- RUN apt-get install -y php-pear php-dev > /dev/null
- COPY deploy/conf/php-async.ini /etc/php/7.4/cgi/php.ini
- ADD ./ /ubiquity
- WORKDIR /ubiquity
- RUN chmod -R 777 /ubiquity
- RUN ["chmod", "+x", "deploy/run/install-composer.sh"]
- RUN deploy/run/install-composer.sh
- RUN apt-get update -yqq > /dev/null && \
- apt-get install -yqq git unzip > /dev/null
- RUN php composer.phar require lapinskas/roadrunner-ubiquity:dev-master --quiet
- RUN vendor/bin/rr get
- RUN php composer.phar install --optimize-autoloader --classmap-authoritative --no-dev --quiet
- COPY deploy/roadrunner/envwrapper.sh /bin/
- RUN ln -s /ubiquity/.ubiquity/.rr.yml /ubiquity/.rr.yml
- RUN chmod 755 /bin/envwrapper.sh
- RUN chmod 777 -R /ubiquity/.ubiquity/*
- #RUN echo "opcache.preload=/ubiquity/app/config/preloader.script.php" >> /etc/php/7.4/cgi/php.ini
- COPY deploy/conf/roadrunner/mysql/rrServices.php app/config/rrServices.php
- CMD envwrapper.sh /ubiquity/rr serve
|