Fix PHP 7.2 builds
This commit is contained in:
parent
f1c0a829da
commit
f9c7e4b8e4
1 changed files with 6 additions and 3 deletions
|
@ -1,9 +1,12 @@
|
||||||
FROM php:7.2-rc
|
FROM php:7.2-rc-zts
|
||||||
LABEL maintainer "Tony Blyler <me@tonyblyler.com>"
|
LABEL maintainer "Tony Blyler <me@tonyblyler.com>"
|
||||||
|
|
||||||
RUN pecl install xdebug && \
|
# 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-install pcntl sockets && \
|
||||||
docker-php-ext-enable xdebug && \
|
docker-php-ext-enable pthreads && \
|
||||||
|
# docker-php-ext-enable xdebug && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
git \
|
git \
|
||||||
|
|
Loading…
Reference in a new issue