chore: migrate to go module (v3.0.0)

- chore: update dependencies: use version with go modules.
- chore: remove dep.
- chore: update backoff imports.
- chore: init go module.
- chore: update CI.
- chore: mod v3
- chore: update docker image.
This commit is contained in:
Fernandez Ludovic 2019-07-30 21:19:32 +02:00 committed by Ludovic Fernandez
commit e7a90b9471
2562 changed files with 880 additions and 712689 deletions

View file

@ -1,13 +1,12 @@
FROM golang:alpine3.9 as builder
FROM golang:1.12-alpine3.10 as builder
RUN apk --update upgrade \
&& apk --no-cache --no-progress add make git
RUN apk --no-cache --no-progress add make git
WORKDIR /go/src/github.com/go-acme/lego
COPY . .
RUN make build
FROM alpine:3.9
FROM alpine:3.10
RUN apk update \
&& apk add --no-cache ca-certificates tzdata \
&& update-ca-certificates