From 5696a1b4286d3565790423666a9611dc04d1a237 Mon Sep 17 00:00:00 2001 From: Evgeniy Baranov Date: Fri, 29 Sep 2023 12:08:34 +0300 Subject: [PATCH 1/2] test sign --- .gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 From 98c467e24d4a165e320d3755608798ee0f9a66fc Mon Sep 17 00:00:00 2001 From: Evgeniy Baranov Date: Fri, 1 Mar 2024 21:35:00 +0300 Subject: [PATCH 2/2] 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; \ \