docker-php-build/7.1/Dockerfile

15 lines
305 B
Docker
Raw Normal View History

2017-08-18 09:29:10 -04:00
FROM php:7.1
2017-08-18 09:26:57 -04:00
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"]