Revize 1cfcde53
Přidáno uživatelem Tomáš Ballák před téměř 5 roky(ů)
build/php-fpm/dev/Dockerfile | ||
---|---|---|
17 | 17 |
pip3 install --no-cache --upgrade pip setuptools wheel && \ |
18 | 18 |
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi |
19 | 19 |
|
20 |
|
|
20 |
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer |
|
21 | 21 |
COPY xdebug.ini /etc/php7/conf.d/xdebug.ini |
22 | 22 |
RUN echo -en "\n" >> /etc/php7/conf.d/xdebug.ini |
23 | 23 |
RUN apk --update --no-cache add autoconf g++ make && \ |
24 | 24 |
pecl install -f xdebug-2.9.4 && \ |
25 | 25 |
docker-php-ext-enable xdebug && \ |
26 | 26 |
apk del --purge autoconf g++ make |
27 |
RUN echo zend_extension="$(find / -name 'xdebug.so')" >> /etc/php7/conf.d/xdebug.ini |
|
27 |
RUN echo zend_extension="$(find / -name 'xdebug.so')" >> /etc/php7/conf.d/xdebug.ini |
Také k dispozici: Unified diff
wip