-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (23 loc) · 870 Bytes
/
Dockerfile
File metadata and controls
29 lines (23 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM debian:buster-slim
ARG BUILD_DATE
LABEL maintainer="docker@aquaron.com" \
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.docker.cmd="docker run --rm -t -v $PWD:/data aquaron/certbot" \
org.label-schema.description="Get/renew Let's Encrypt Wildcard Certs with Certbot" \
org.label-schema.name="certbot" \
org.label-schema.url="https://certbot.eff.org" \
org.label-schema.vcs-url="https://github.com/aquaron/certbot" \
org.label-schema.vendor="aquaron" \
org.label-schema.version="1.2"
COPY data/runme.sh /usr/bin/runme.sh
COPY data/cli.ini /etc/cli.ini
RUN apt update -q \
&& apt install -yq certbot \
python3-certbot-dns-digitalocean \
python3-certbot-dns-linode \
python3-certbot-dns-google \
python3-certbot-dns-route53 \
&& apt autoremove -qy \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "runme.sh" ]
CMD [ "help" ]