From bc1525c0a39c2b3adf09b3fba17cf9da5dacc65c Mon Sep 17 00:00:00 2001 From: Mats Luspa Date: Mon, 25 Nov 2024 15:09:19 +0100 Subject: [PATCH] Update Dockerfile: python-certbot-nginx => python3-certbot-nginx python-certbot-nginx package has been replaced with python3-certbot-nginx package. --- nginx-certbot/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx-certbot/Dockerfile b/nginx-certbot/Dockerfile index f844e1651..8d703262b 100644 --- a/nginx-certbot/Dockerfile +++ b/nginx-certbot/Dockerfile @@ -5,7 +5,7 @@ RUN set -ex; \ apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install --no-install-recommends -y \ - certbot curl python-certbot-nginx && \ + certbot curl python3-certbot-nginx && \ apt-get -y autoclean; apt-get -y autoremove; \ rm -rf /var/lib/apt/lists/*