From 4d01af340d121fdc3f473df3bdccbd64b6c473a7 Mon Sep 17 00:00:00 2001 From: yohan-b Date: Sat, 4 Nov 2023 21:26:55 +0100 Subject: [PATCH] Fix wrong repo. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f11d2e..502c75b 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 stretch-backports +RUN apt-get update && apt-get -y install apache2 && apt-get -y install python-certbot-apache -t bookworm-backports RUN a2enmod ssl proxy proxy_http rewrite headers proxy_wstunnel EXPOSE 80 EXPOSE 443