cakephp.dockerfile 188 B

123456789
  1. FROM tfb/php5:latest
  2. ADD ./ /cakephp
  3. WORKDIR /cakephp
  4. RUN composer.phar install --no-progress
  5. CMD service php5.6-fpm start && \
  6. nginx -c /cakephp/deploy/nginx.conf -g "daemon off;"