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