Automatic generation of documentation (#818)

* generate a detailed CLI help
* generate a documentation site
* new readme
This commit is contained in:
Ludovic Fernandez 2019-03-08 19:47:06 +01:00 committed by GitHub
commit 62fea05e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
152 changed files with 9535 additions and 579 deletions

View file

@ -1,4 +1,4 @@
FROM golang:alpine3.8 as builder
FROM golang:alpine3.9 as builder
RUN apk --update upgrade \
&& apk --no-cache --no-progress add make git \
@ -8,7 +8,7 @@ WORKDIR /go/src/github.com/xenolf/lego
COPY . .
RUN make build
FROM alpine:3.8
FROM alpine:3.9
RUN apk update && apk add --no-cache --virtual ca-certificates
COPY --from=builder /go/src/github.com/xenolf/lego/dist/lego /usr/bin/lego
ENTRYPOINT [ "/usr/bin/lego" ]