File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -374,8 +374,9 @@ To configure Blackfire.io follow these simple steps:
374
374
` ` ` dockerfile
375
375
RUN version=$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \
376
376
&& curl -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/alpine/amd64/$version \
377
- && tar zxpf /tmp/blackfire-probe.tar.gz -C /tmp \
378
- && mv /tmp/blackfire-*.so $(php -r "echo ini_get('extension_dir');")/blackfire.so \
377
+ && mkdir -p /tmp/blackfire \
378
+ && tar zxpf /tmp/blackfire-probe.tar.gz -C /tmp/blackfire \
379
+ && mv /tmp/blackfire/blackfire-*.so $(php -r "echo ini_get('extension_dir');")/blackfire.so \
379
380
&& printf "extension=blackfire.so\n blackfire.agent_socket=tcp://blackfire:8707\n " > $PHP_INI_DIR/conf.d/blackfire.ini
380
381
` ` `
381
382
You can’t perform that action at this time.
0 commit comments