From 6418ee32e51bde36034acc8e9404e5ccb7ba9757 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 6 May 2025 10:57:10 -0700 Subject: [PATCH] upgrade certbot compatibility test images (#10277) i need this for some other upgrades i'm working on. using these debian buster images which were [EOL'd ages ago](https://www.debian.org/releases/) is giving me problems while i was at it, i fixed up up the following warnings docker was printing at me: * https://docs.docker.com/reference/build-checks/legacy-key-value-format/ * https://docs.docker.com/reference/build-checks/maintainer-deprecated/ --- certbot-compatibility-test/Dockerfile | 6 +++--- certbot-compatibility-test/Dockerfile-apache | 2 +- certbot-compatibility-test/Dockerfile-nginx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/certbot-compatibility-test/Dockerfile b/certbot-compatibility-test/Dockerfile index a4ba766d4..d5e92bb0a 100644 --- a/certbot-compatibility-test/Dockerfile +++ b/certbot-compatibility-test/Dockerfile @@ -1,5 +1,5 @@ -FROM docker.io/python:3.11-buster -LABEL maintainer="Brad Warren " +FROM docker.io/python:3.13-bookworm +LABEL org.opencontainers.image.authors="certbot-dev@eff.org" # This does not include the dependencies needed to build cryptography. See # https://cryptography.io/en/latest/installation/#building-cryptography-on-linux @@ -13,7 +13,7 @@ WORKDIR /opt/certbot/src COPY . . RUN tools/venv.py -ENV PATH /opt/certbot/src/venv/bin:$PATH +ENV PATH=/opt/certbot/src/venv/bin:$PATH # install in editable mode (-e) to save space: it's not possible to # "rm -rf /opt/certbot/src" (it's stays in the underlying image); diff --git a/certbot-compatibility-test/Dockerfile-apache b/certbot-compatibility-test/Dockerfile-apache index 5c0495966..cd42e1fdc 100644 --- a/certbot-compatibility-test/Dockerfile-apache +++ b/certbot-compatibility-test/Dockerfile-apache @@ -1,5 +1,5 @@ FROM certbot-compatibility-test -MAINTAINER Brad Warren +LABEL org.opencontainers.image.authors="certbot-dev@eff.org" RUN apt-get install apache2 -y diff --git a/certbot-compatibility-test/Dockerfile-nginx b/certbot-compatibility-test/Dockerfile-nginx index 4ade03065..979609f8a 100644 --- a/certbot-compatibility-test/Dockerfile-nginx +++ b/certbot-compatibility-test/Dockerfile-nginx @@ -1,5 +1,5 @@ FROM certbot-compatibility-test -MAINTAINER Brad Warren +LABEL org.opencontainers.image.authors="certbot-dev@eff.org" RUN apt-get install nginx -y