Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FROM wordpress:latest
- RUN apt-get update && \
- apt-get -y install git subversion default-mysql-client wget && \
- curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \
- chmod +x wp-cli.phar && \
- mv wp-cli.phar /usr/local/bin/wp && \
- echo "alias wp=\"wp --allow-root\"" >> /root/.bashrc
- RUN cd /tmp && \
- git clone https://github.com/xdebug/xdebug.git && \
- cd xdebug && \
- git checkout xdebug_3_2 && \
- phpize && \
- ./configure --enable-xdebug && \
- make && \
- make install && \
- rm -rf /tmp/xdebug
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement