update docker image (#10057)

This commit is contained in:
Brad Warren
2024-11-14 13:37:08 -08:00
committed by GitHub
parent aa6ea3b513
commit 59f32c9d11
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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