FROM ubuntu:18.04 ENV DEBIAN_FRONTEND noninteractive RUN add-apt-repository -y ppa:certbot/certbot && \ apt-get install -yq certbot python3-certbot-dns-cloudflare curl COPY certbot.sh /tmp COPY ./init.sh /tmp ENTRYPOINT /bin/bash /tmp/init.sh && /bin/bash