From 2f1f5aa10074dfd2f55aa84b2a806913322c1007 Mon Sep 17 00:00:00 2001 From: Michael Strelan Date: Wed, 2 Aug 2023 09:26:00 +1000 Subject: [PATCH 1/2] Add findutils to circleci image --- circleci/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circleci/Dockerfile b/circleci/Dockerfile index fe5f4e8..e600225 100644 --- a/circleci/Dockerfile +++ b/circleci/Dockerfile @@ -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 From 5d17b03ca5c01f8ca8bf8f96e0fee567fe34950e Mon Sep 17 00:00:00 2001 From: Michael Strelan Date: Wed, 2 Aug 2023 11:31:51 +1000 Subject: [PATCH 2/2] Add findutils to dev image too --- dev/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/Dockerfile b/dev/Dockerfile index 9ce8bb8..e0dcc72 100644 --- a/dev/Dockerfile +++ b/dev/Dockerfile @@ -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//./} && \