From c55aba4dfdd4269fc94f12df68580913aa60e4e9 Mon Sep 17 00:00:00 2001 From: phalene-bytes <57033024+phalene-bytes@users.noreply.github.com> Date: Thu, 8 Feb 2024 13:34:36 -0800 Subject: [PATCH] Remove memprof from dockerfile (#1739) (#1740) The module 'php8-pecl-memprof' has changed to 'php81-pecl-memprof'. It is a memory profiler for PHP, used to identify memory leaks in PHP scripts. The renaming caused a failure in the Docker image build process. For more info on this module, see: https://github.com/artefactual/atom/pull/1452 --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 94539fc65f..b45d84c8d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,8 +36,6 @@ RUN set -xe \ libxslt \ libmemcached-libs \ libzip \ - && apk add --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted \ - php8-pecl-memprof \ && apk del .phpext-builddeps \ && pecl clear-cache \ && apk add --no-cache --virtual .atom-deps \