From a783b38b1bf04373f1374eadcef1a7de82f378fa Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Thu, 5 Dec 2019 16:48:06 -0800 Subject: [PATCH] fix certbot Signed-off-by: Jess Frazelle --- certbot/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/Dockerfile b/certbot/Dockerfile index 5077d6a..9453b68 100644 --- a/certbot/Dockerfile +++ b/certbot/Dockerfile @@ -21,7 +21,7 @@ RUN buildDeps=' \ && apk --no-cache add $buildDeps \ && pip3 install acme \ && git clone --depth 1 --branch "v$CERTBOT_VERSION" https://github.com/certbot/certbot /usr/src/certbot \ - && cd /usr/src/certbot \ + && cd /usr/src/certbot/certbot \ && python3 setup.py build || return 1 \ && python3 setup.py install --prefix=/usr || return 1 \ && rm -rf /usr/src/certbot \