Add latest php dockerfile

This commit is contained in:
Tony Blyler 2017-08-18 09:26:57 -04:00
parent 7bc791635f
commit 76f8d62ab6

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM php:latest
LABEL maintainer "Tony Blyler <me@tonyblyler.com>"
RUN pecl install xdebug && \
docker-php-ext-install pcntl sockets && \
docker-php-ext-enable xdebug && \
apt-get update && \
apt-get install -y \
git \
wget \
openssh-client
ENTRYPOINT ["docker-php-entrypoint"]
CMD ["php", "-a"]