certbot: missing chmod +x
This commit is contained in:
parent
9ea5be22cb
commit
94572cd1c9
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue