Dockerfile 432 B

12345678910111213
  1. FROM debian:wheezy
  2. RUN apt-get update
  3. # For installing hhvm
  4. RUN apt-get install -y apt-transport-https software-properties-common
  5. RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xB4112585D386EB94
  6. RUN echo deb https://dl.hhvm.com/debian wheezy main > /etc/apt/sources.list.d/hhvm.list
  7. RUN apt-get update
  8. RUN apt-get -y install curl rake php5 php5-cli php5-curl php-pear hhvm phpunit
  9. WORKDIR /braintree-php