From 7894d2602fa321041933787dbe41376cab2e849b Mon Sep 17 00:00:00 2001 From: yohan-b Date: Sat, 4 Nov 2023 21:30:59 +0100 Subject: [PATCH] Fix certbot package name. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 502c75b..effeae9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND noninteractive ENV TZ=Europe/Paris RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN echo "deb http://ftp.debian.org/debian bookworm-backports main" >> /etc/apt/sources.list -RUN apt-get update && apt-get -y install apache2 && apt-get -y install python-certbot-apache -t bookworm-backports +RUN apt-get update && apt-get -y install apache2 && apt-get -y install python3-certbot-apache -t bookworm-backports RUN a2enmod ssl proxy proxy_http rewrite headers proxy_wstunnel EXPOSE 80 EXPOSE 443