lithium.dockerfile 215 B

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