docker-images/images/certbot/Dockerfile

14 lines
298 B
Docker
Raw Normal View History

2020-10-21 22:37:51 +00:00
ARG REPO_LOCATION
# ARG BASE_VERSION
FROM ${REPO_LOCATION}minideb
RUN install_packages certbot
# Only required if we use acme.sh instead of certbot: openssl openssh-client coreutils dnsutils curl socat tzdata tar oathtool
VOLUME /etc/letsencrypt
USER 100:100
ENTRYPOINT [ "/usr/bin/certbot" ]