fat-free.dockerfile 714 B

1234567891011121314151617181920212223
  1. FROM ubuntu:16.04
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /dev/null
  4. RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
  5. RUN apt-get update -yqq > /dev/null
  6. RUN apt-get install -yqq nginx git unzip php7.2 php7.2-common php7.2-cli php7.2-fpm php7.2-mysql > /dev/null
  7. COPY deploy/conf/* /etc/php/7.2/fpm/
  8. ADD ./ /fat-free
  9. WORKDIR /fat-free
  10. ENV F3DIR="/fat-free/src"
  11. RUN git clone "https://github.com/bcosca/fatfree-core.git" src
  12. RUN cd src && git checkout -q "069ccd84afd2461c7ebb67f660c142f97577e661" # v3.5.2-dev
  13. RUN chmod -R 777 /fat-free
  14. CMD service php7.2-fpm start && \
  15. nginx -c /fat-free/deploy/nginx.conf -g "daemon off;"