
supported, or to use env vars to get service host info. Test change to reflect php filename change.
11 lines
271 B
Docker
11 lines
271 B
Docker
FROM php:5-apache
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y php-pear
|
|
RUN pear channel-discover pear.nrk.io
|
|
RUN pear install nrk/Predis
|
|
|
|
ADD guestbook.php /var/www/html/guestbook.php
|
|
ADD controllers.js /var/www/html/controllers.js
|
|
ADD index.html /var/www/html/index.html
|