From 8d7b38565b8198e301cabd2ae349e8832929c5df Mon Sep 17 00:00:00 2001 From: Fred Clausen <43556888+fredclausen@users.noreply.github.com> Date: Thu, 26 Oct 2023 12:59:23 -0600 Subject: [PATCH] fix php apt key --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b7a0a72..1c10681 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,7 +68,7 @@ RUN set -x && \ echo "fr_FR ISO-8859-1" >> /etc/locale.gen && \ locale-gen && \ echo "========== Deploy php ==========" && \ - apt-get install software-properties-common ca-certificates lsb-release apt-transport-https -y --no-install-recommends && \ + apt-get install software-properties-common ca-certificates lsb-release apt-transport-https gpg-agent -y --no-install-recommends && \ sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' && \ wget -qO - https://packages.sury.org/php/apt.gpg | apt-key add - && \ apt-get update -y && \