Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion circleci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ USER root

RUN apk --update --no-cache add \
php${PHP_VERSION}-fpm \
openssh-client
openssh-client \
findutils

COPY fpm/conf.d/50_fpm.ini /etc/php/conf.d/50_fpm.ini
COPY fpm/php-fpm.conf /etc/php/php-fpm.conf
Expand Down
3 changes: 2 additions & 1 deletion dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ USER root

RUN apk --update --no-cache add \
php${PHP_VERSION}-xdebug \
php${PHP_VERSION}-spx
php${PHP_VERSION}-spx \
findutils

# https://blog.blackfire.io/alpine-linux-support.html
RUN curl -sSL -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/alpine/${ARCH}/${PHP_VERSION//./} && \
Expand Down