From 98c467e24d4a165e320d3755608798ee0f9a66fc Mon Sep 17 00:00:00 2001 From: Evgeniy Baranov Date: Fri, 1 Mar 2024 21:35:00 +0300 Subject: [PATCH] fix arm build --- apache/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apache/Dockerfile b/apache/Dockerfile index 7ac5d04..7f3f260 100644 --- a/apache/Dockerfile +++ b/apache/Dockerfile @@ -8,6 +8,9 @@ COPY --from=composer:2 /usr/bin/composer /usr/bin/composer # wp-cli COPY --from=wordpress:cli /usr/local/bin/wp /usr/local/bin/wp +RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \ + echo "Acquire::BrokenProxy true;" >> /etc/apt/apt.conf.d/99custom # install the PHP extensions we need (https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions) RUN set -ex; \ \