You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
305 B

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