docker-php-build/7.2/Dockerfile
2017-08-18 09:40:22 -04:00

15 lines
308 B
Docker

FROM php:7.2-rc
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"]