certbot: missing chmod +x

This commit is contained in:
Starbeamrainbowlabs 2020-11-29 01:38:06 +00:00
parent 9ea5be22cb
commit 94572cd1c9
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 3 additions and 2 deletions

View File

@ -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