File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,14 +59,14 @@ RUN mkdir -p /opt/oci8 \
59
59
RUN pecl install redis \
60
60
&& echo "extension=redis.so" >> /usr/local/etc/php/conf.d/redis.ini
61
61
62
+ # Install Composer
63
+ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer
64
+
62
65
# Install XDebug
63
66
RUN cd /tmp && wget http://xdebug.org/files/xdebug-2.5.4.tgz && tar -xvzf xdebug-2.5.4.tgz && cd xdebug-2.5.4 \
64
67
&& phpize && ./configure && make && cp modules/xdebug.so /usr/local/lib/php/extensions/no-debug-non-zts-20160303 \
65
68
&& rm -rf /tmp/xdebug-2.5.4.* /tmp/xdebug-2.5.4/
66
69
67
- # Install Composer
68
- RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer
69
-
70
70
# Run composer install
71
71
CMD /usr/bin/apache-run
72
72
You can’t perform that action at this time.
0 commit comments