felia/.nginx/certbot/Dockerfile

9 lines
142 B
Docker
Raw Normal View History

2022-09-27 09:39:23 +00:00
FROM certbot/certbot:v1.29.0
RUN apk add --no-cache bash
COPY certbot.sh /opt/
RUN chmod +x /opt/certbot.sh
ENTRYPOINT ["/opt/certbot.sh"]