From c7d1a460263cde2766b27f1ca268d9f60cd6670d Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Fri, 20 Jan 2023 22:53:22 -0600 Subject: [PATCH] Install pecl-mcrypt from edge --- Dockerfile | 5 ++--- Dockerfile.aarch64 | 5 ++--- Dockerfile.armhf | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index fc57d87..04d82a1 100755 --- a/Dockerfile +++ b/Dockerfile @@ -68,7 +68,6 @@ RUN \ php81-pear \ php81-pecl-apcu \ php81-pecl-mailparse \ - php81-pecl-mcrypt \ php81-pecl-memcached \ php81-pecl-redis \ php81-pgsql \ @@ -83,8 +82,8 @@ RUN \ php81-xsl \ php81-zip \ whois && \ - apk add --no-cache \ - --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing \ + apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing \ + php81-pecl-mcrypt && \ php81-pecl-xmlrpc && \ echo "**** install certbot plugins ****" && \ if [ -z ${CERTBOT_VERSION+x} ]; then \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 208090e..361445c 100755 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -68,7 +68,6 @@ RUN \ php81-pear \ php81-pecl-apcu \ php81-pecl-mailparse \ - php81-pecl-mcrypt \ php81-pecl-memcached \ php81-pecl-redis \ php81-pgsql \ @@ -83,8 +82,8 @@ RUN \ php81-xsl \ php81-zip \ whois && \ - apk add --no-cache \ - --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing \ + apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing \ + php81-pecl-mcrypt && \ php81-pecl-xmlrpc && \ echo "**** install certbot plugins ****" && \ if [ -z ${CERTBOT_VERSION+x} ]; then \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 7092d9a..30f5c84 100755 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -68,7 +68,6 @@ RUN \ php81-pear \ php81-pecl-apcu \ php81-pecl-mailparse \ - php81-pecl-mcrypt \ php81-pecl-memcached \ php81-pecl-redis \ php81-pgsql \ @@ -83,8 +82,8 @@ RUN \ php81-xsl \ php81-zip \ whois && \ - apk add --no-cache \ - --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing \ + apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing \ + php81-pecl-mcrypt && \ php81-pecl-xmlrpc && \ echo "**** install certbot plugins ****" && \ if [ -z ${CERTBOT_VERSION+x} ]; then \