From e10e75b900f8ab231a2bd46f195e568b05375b2a Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Sun, 10 Sep 2023 08:18:32 -0700 Subject: [PATCH] set base image to debian bullseye Debian bookworm has become stable and there appears to be an issue with the CA certs and the prosody package so I'm pinning the base image to bullseye until it can be properly sorted. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fe7be4a..39b5702 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:stable-slim +FROM debian:bullseye-slim RUN apt-get update && \ apt-get install extrepo -y && \