mirror of
https://github.com/vxcontrol/rancher-letsencrypt.git
synced 2026-07-01 22:24:01 -04:00
13 lines
296 B
Docker
13 lines
296 B
Docker
FROM alpine:3.3
|
|
MAINTAINER Jan Broer <jan@festplatte.eu.org>
|
|
|
|
EXPOSE 80
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
ADD build/rancher-letsencrypt-linux-amd64 /usr/bin/rancher-letsencrypt
|
|
|
|
RUN chmod +x /usr/bin/rancher-letsencrypt
|
|
|
|
ENTRYPOINT ["/usr/bin/rancher-letsencrypt", "-debug", "-test-mode"]
|