From 0c9f0fc3345042d53fac2578b3f550d1a330083b Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 1 Oct 2024 08:03:51 -0700 Subject: [PATCH] Revert "use default verbosity" This reverts commit f186f8cee291639fac3dfb6581af882ebeb5cc3e. --- tools/docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 55ab8f502..18925cd8a 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.18 AS certbot ENTRYPOINT [ "certbot" ] EXPOSE 80 443 @@ -35,7 +35,7 @@ RUN apk add --no-cache --virtual .build-deps \ cargo \ git \ pkgconfig \ - && python tools/pip_install.py --no-cache-dir \ + && CARGO_LOG=trace CARGO_TERM_VERBOSE=true python tools/pip_install.py --no-cache-dir \ --editable src/acme \ --editable src/certbot \ && apk del .build-deps \ @@ -44,6 +44,6 @@ RUN apk add --no-cache --virtual .build-deps \ #static definition for making a plugin, but beware that #using this layer definition will cause collisions if you make #extensive use of the cache. -FROM certbot as certbot-plugin +FROM certbot AS certbot-plugin COPY --from=plugin-src . /opt/certbot/src/plugin RUN python tools/pip_install.py --no-cache-dir --editable /opt/certbot/src/plugin