Use GCR images from 'google-samples' project; allow switch on whether dns service is

supported, or to use env vars to get service host info.

Test change to reflect php filename change.
This commit is contained in:
Amy Unruh
2015-08-10 11:00:44 -07:00
parent c28b68d254
commit 3574999fa3
9 changed files with 97 additions and 26 deletions

View File

@@ -1,7 +1,10 @@
FROM brendanburns/php
FROM php:5-apache
ADD index.php /var/www/index.php
ADD controllers.js /var/www/controllers.js
ADD index.html /var/www/index.html
RUN apt-get update
RUN apt-get install -y php-pear
RUN pear channel-discover pear.nrk.io
RUN pear install nrk/Predis
CMD /run.sh
ADD guestbook.php /var/www/html/guestbook.php
ADD controllers.js /var/www/html/controllers.js
ADD index.html /var/www/html/index.html