9 lines
134 B
Docker
9 lines
134 B
Docker
FROM certbot/certbot
|
|
|
|
RUN apk add --no-cache bash
|
|
|
|
COPY certbot.sh /opt/
|
|
|
|
RUN chmod +x /opt/certbot.sh
|
|
|
|
ENTRYPOINT ["/opt/certbot.sh"] |