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