7 lines
160 B
Docker
7 lines
160 B
Docker
FROM alpine
|
|
|
|
RUN apk update && apk add --no-cache jq curl openssl socat
|
|
COPY ./start.letsencrypt.sh /start.letsencrypt.sh
|
|
|
|
ENTRYPOINT ["/start.letsencrypt.sh"]
|