Add latest php dockerfile
This commit is contained in:
parent
7bc791635f
commit
76f8d62ab6
1 changed files with 14 additions and 0 deletions
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
Loading…
Reference in a new issue