From de930577997dfeb7ae6f6ba72e8cf2a55f0081fd Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Sun, 28 Apr 2024 11:29:03 -0400 Subject: [PATCH] Upgrade to the latest version of Python3 available The previous version is no longer available from the package manager used by the certbot/dns-route53 base image. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7fa8fe6..fb6f484 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN apk --update --no-cache --quiet upgrade # longer install times. ### ENV DEPS \ - python3=3.10.13-r0 + python3=3.10.14-r1 RUN apk --no-cache --quiet add ${DEPS} ###