Skip to content

Instantly share code, notes, and snippets.

@fizzka
Last active January 23, 2018 16:20
Show Gist options
  • Save fizzka/44e1f72c0517893fe8e44d943961723f to your computer and use it in GitHub Desktop.
Save fizzka/44e1f72c0517893fe8e44d943961723f to your computer and use it in GitHub Desktop.
как собрать расширение без _самостоятельной_ установки build_deps
FROM php:alpine
RUN pecl download xdebug-beta && \
tar xzf xdebug* && \
rm -rf xdebug*.tgz && \
docker-php-ext-install $(pwd)/xdebug* && \
rm -rf xdebug*
@GeorgeBekh
Copy link

Нормас

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment