From 59f32c9d11507da19f9b7e2db9507d5af6a1c7f5 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 14 Nov 2024 13:37:08 -0800 Subject: [PATCH] update docker image (#10057) --- certbot/CHANGELOG.md | 2 +- tools/docker/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/certbot/CHANGELOG.md b/certbot/CHANGELOG.md index ae7a1a90c..7399cee11 100644 --- a/certbot/CHANGELOG.md +++ b/certbot/CHANGELOG.md @@ -11,7 +11,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/). ### Changed -* +* Updated our Docker images to be based on Alpine Linux 3.20. ### Fixed diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 6ea546906..760c65b98 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -1,5 +1,5 @@ #base image -FROM python:3.12-alpine3.18 AS certbot +FROM python:3.12-alpine3.20 AS certbot ENTRYPOINT [ "certbot" ] EXPOSE 80 443 @@ -15,7 +15,7 @@ COPY certbot src/certbot # Install certbot runtime dependencies RUN apk add --no-cache --virtual .certbot-deps \ libffi \ - libssl1.1 \ + libssl3 \ openssl \ ca-certificates \ binutils