chore: migrate to new org. (#824)

This commit is contained in:
Ludovic Fernandez 2019-03-11 17:56:48 +01:00 committed by GitHub
commit 3edb75872d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
244 changed files with 673 additions and 673 deletions

View file

@ -4,11 +4,11 @@ RUN apk --update upgrade \
&& apk --no-cache --no-progress add make git \
&& rm -rf /var/cache/apk/*
WORKDIR /go/src/github.com/xenolf/lego
WORKDIR /go/src/github.com/go-acme/lego
COPY . .
RUN make build
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
COPY --from=builder /go/src/github.com/go-acme/lego/dist/lego /usr/bin/lego
ENTRYPOINT [ "/usr/bin/lego" ]