codeigniter-hhvm.dockerfile 843 B

1234567891011121314151617181920
  1. FROM ubuntu:18.10
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. RUN apt-get update -yqq && apt-get install -yqq software-properties-common apt-transport-https > /dev/null
  4. RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
  5. RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xB4112585D386EB94
  6. RUN add-apt-repository https://dl.hhvm.com/ubuntu
  7. RUN apt-get update -yqq > /dev/null && \
  8. apt-get install -yqq hhvm nginx git unzip php7.3 php7.3-common php7.3-cli php7.3-fpm php7.3-mysql php7.3-xml php7.3-mbstring > /dev/null
  9. RUN apt-get install -yqq composer > /dev/null
  10. ADD ./ /codeigniter
  11. WORKDIR /codeigniter
  12. RUN composer install --optimize-autoloader --classmap-authoritative --no-dev --quiet
  13. CMD hhvm -m daemon --config /codeigniter/deploy/config.hdf && \
  14. nginx -c /codeigniter/deploy/nginx-hhvm.conf -g "daemon off;"