docker-php-build/7.2/Dockerfile
2017-08-21 11:55:12 -04:00

18 lines
445 B
Docker

FROM php:7.2-rc-zts
LABEL maintainer "Tony Blyler <me@tonyblyler.com>"
# FIXME get xdebug working for PHP 7.2 (not officially supported yet)
# pecl install xdebug
RUN pecl install pthreads && \
docker-php-ext-install pcntl sockets && \
docker-php-ext-enable pthreads && \
# docker-php-ext-enable xdebug && \
apt-get update && \
apt-get install -y \
git \
wget \
openssh-client
ENTRYPOINT ["docker-php-entrypoint"]
CMD ["php", "-a"]