13 lines
298 B
Docker
13 lines
298 B
Docker
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" ]
|