From a391ca2bb460ad36efeccbac1781e886fd24981a Mon Sep 17 00:00:00 2001 From: Zoey2936 <75573284+Zoey2936@users.noreply.github.com> Date: Thu, 6 Jun 2024 01:19:38 +0000 Subject: [PATCH] update certbot version Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e4978d3..88fa8e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.12.3-alpine3.20 as certbot RUN apk upgrade --no-cache -a && \ apk add --no-cache ca-certificates build-base libffi-dev && \ python3 -m venv /usr/local && \ - pip install --no-cache-dir certbot==2.10.0 + pip install --no-cache-dir certbot==2.11.0 FROM scratch COPY --from=certbot /usr/local /usr/local