diff --git a/images/certbot/Dockerfile b/images/certbot/Dockerfile index fcc9f56..7ffac01 100644 --- a/images/certbot/Dockerfile +++ b/images/certbot/Dockerfile @@ -3,8 +3,9 @@ ARG REPO_LOCATION FROM ${REPO_LOCATION}minideb AS builder -RUN install_packages curl ca-certificates && \ - curl -sS https://dl.eff.org/certbot-auto -o /srv/certbot-auto +RUN install_packages curl ca-certificates \ + && curl -sS https://dl.eff.org/certbot-auto -o /srv/certbot-auto \ + && chmod +x /srv/certbot-auto FROM ${REPO_LOCATION}minideb