You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .devcontainer/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,11 @@ RUN apt-get install -y git curl vim bash sudo tmux man ack zip unzip
6
6
7
7
# nikic/php-ast
8
8
RUN cd /tmp; git clone https://github.com/nikic/php-ast.git && cd php-ast && phpize && ./configure && make && make install
9
-
RUN echo "extension=ast" > /usr/local/etc/php/conf.d/docker-php-ast.ini
9
+
RUN echo "extension=ast" > /usr/local/etc/php/conf.d/php-ast.ini
10
10
11
11
# xdebug
12
12
RUN cd /tmp; curl -O https://xdebug.org/files/xdebug-3.2.1.tgz && tar -xvzf xdebug-3.2.1.tgz && cd xdebug-3.2.1 && phpize && ./configure && make && make install
13
+
RUN echo "zend_extension=xdebug" > /usr/local/etc/php/conf.d/xdebug.ini
13
14
14
15
# Composer
15
16
RUN cd /tmp; curl -O https://getcomposer.org/installer && php ./installer --install-dir=/usr/local/bin --filename=composer
0 commit comments