8 lines
176 B
Docker
8 lines
176 B
Docker
FROM neilpang/acme.sh:latest
|
|
MAINTAINER gyurix
|
|
|
|
RUN apk update && apk add --no-cache jq
|
|
COPY ./start.letsencrypt.sh /start.letsencrypt.sh
|
|
|
|
ENTRYPOINT ["/start.letsencrypt.sh"]
|